Skip to content

Commit f3dda69

Browse files
committed
update phpDoc
1 parent fe1f4c8 commit f3dda69

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

Module.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
use yii\base\InvalidConfigException;
55

66
/**
7-
* Graphical user module for Role Based Access Control Yii2 Module.
7+
* Graphical user interface (GUI) module for Role Based Access Control (RBAC) Yii2 Module.
88
* It also allows to perform basic operations RBAC.
99
*
10-
* Using in config:
10+
* Using in the your web config:
1111
* ~~~
1212
* ```php
1313
* 'modules' => [
@@ -23,7 +23,6 @@
2323
* ~~~
2424
*
2525
* @author Evgeniy Tkachenko <[email protected]>
26-
* @since 2.0
2726
*/
2827
class Module extends \yii\base\Module
2928
{
@@ -33,7 +32,7 @@ class Module extends \yii\base\Module
3332
public function init()
3433
{
3534
if (\Yii::$app->authManager === null) {
36-
throw new InvalidConfigException('You should configure authManager component');
35+
throw new InvalidConfigException('You should configure the authManager component.');
3736
}
3837
parent::init();
3938
}

0 commit comments

Comments
 (0)