| Total Complexity | 5 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | abstract class Action extends \yii\base\Action |
||
| 10 | { |
||
| 11 | public $primaryKeyParam = 'id'; |
||
| 12 | public $layout; |
||
| 13 | public $view; |
||
| 14 | |||
| 15 | public function init() |
||
| 16 | { |
||
| 17 | if ($this->layout) { |
||
| 18 | $this->controller->layout = $this->layout; |
||
| 19 | } |
||
| 20 | parent::init(); |
||
| 21 | } |
||
| 22 | |||
| 23 | public function __call($name, $params) |
||
| 33 | } |
||
| 34 | } |