| Total Complexity | 5 |
| Total Lines | 49 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | class DefaultController extends \modules\rbac\console\InitController |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @inheritdoc |
||
| 19 | * @return array |
||
| 20 | */ |
||
| 21 | public function behaviors() |
||
| 22 | { |
||
| 23 | return [ |
||
| 24 | 'access' => [ |
||
| 25 | 'class' => AccessControl::class, |
||
| 26 | 'rules' => [ |
||
| 27 | [ |
||
| 28 | 'allow' => true, |
||
| 29 | 'roles' => ['managerRbac'], |
||
| 30 | ], |
||
| 31 | ], |
||
| 32 | ], |
||
| 33 | 'verbs' => [ |
||
| 34 | 'class' => VerbFilter::class, |
||
| 35 | 'actions' => [ |
||
| 36 | 'init' => YII_ENV_TEST ? ['GET'] : ['POST'], |
||
| 37 | ], |
||
| 38 | ], |
||
| 39 | ]; |
||
| 40 | } |
||
| 41 | |||
| 42 | /** |
||
| 43 | * Renders the index view for the module |
||
| 44 | * @return mixed |
||
| 45 | */ |
||
| 46 | public function actionIndex() |
||
| 49 | } |
||
| 50 | |||
| 51 | /** |
||
| 52 | * Переинициализация RBAC |
||
| 53 | * с установкой настроек по умолчанию |
||
| 54 | */ |
||
| 55 | public function actionInit() |
||
| 66 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.