| Conditions | 3 |
| Paths | 3 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | public function init() |
||
| 17 | { |
||
| 18 | parent::init(); |
||
| 19 | |||
| 20 | if (!isset($this->route)) { |
||
| 21 | throw new InvalidConfigException('The "url" property is not set'); |
||
| 22 | } |
||
| 23 | |||
| 24 | if (!isset($this->containerSelector)) { |
||
| 25 | throw new InvalidConfigException('The "containerSelector" property is not set'); |
||
| 26 | } |
||
| 27 | } |
||
| 28 | |||
| 46 |