From f3dda69e906c639cc3f931666db181d5a016dcb5 Mon Sep 17 00:00:00 2001 From: githubjeka Date: Wed, 30 Dec 2015 18:36:02 +0300 Subject: [PATCH] update phpDoc --- Module.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Module.php b/Module.php index dc17e44..0fafbb4 100644 --- a/Module.php +++ b/Module.php @@ -4,10 +4,10 @@ use yii\base\InvalidConfigException; /** - * Graphical user module for Role Based Access Control Yii2 Module. + * Graphical user interface (GUI) module for Role Based Access Control (RBAC) Yii2 Module. * It also allows to perform basic operations RBAC. * - * Using in config: + * Using in the your web config: * ~~~ * ```php * 'modules' => [ @@ -23,7 +23,6 @@ * ~~~ * * @author Evgeniy Tkachenko - * @since 2.0 */ class Module extends \yii\base\Module { @@ -33,7 +32,7 @@ class Module extends \yii\base\Module public function init() { if (\Yii::$app->authManager === null) { - throw new InvalidConfigException('You should configure authManager component'); + throw new InvalidConfigException('You should configure the authManager component.'); } parent::init(); }