| Total Complexity | 2 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class Module extends \yii\base\Module |
||
| 9 | { |
||
| 10 | /** @var string */ |
||
| 11 | public $accessPermissionName = 'access::emailsValidator'; |
||
| 12 | |||
| 13 | public $controllerNamespace = 'andmemasin\emailsvalidator\controllers'; |
||
| 14 | |||
| 15 | public $defaultRoute = 'site/index'; |
||
| 16 | |||
| 17 | /** @var int $maxInputKB Limit the input string to KB (default = 128) */ |
||
| 18 | public $maxInputKB = 128; |
||
| 19 | |||
| 20 | /** @var boolean $displayFlashMessages whether the flash messages will be rendered ny the module. You can disable this if your app has a separate flash displaying system. */ |
||
| 21 | public $displayFlashMessages = true; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * {@inheritdoc} |
||
| 25 | */ |
||
| 26 | public function init() |
||
| 38 |