Skip to content

Commit

Permalink
update phpDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
githubjeka committed Dec 30, 2015
1 parent fe1f4c8 commit f3dda69
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions Module.php
Original file line number Diff line number Diff line change
Expand Up @@ -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' => [
Expand All @@ -23,7 +23,6 @@
* ~~~
*
* @author Evgeniy Tkachenko <[email protected]>
* @since 2.0
*/
class Module extends \yii\base\Module
{
Expand All @@ -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();
}
Expand Down

0 comments on commit f3dda69

Please sign in to comment.