Conditions | 5 |
Paths | 2 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 5 | ||
Bugs | 3 | Features | 0 |
1 | <?php |
||
44 | public function isAllowed() |
||
45 | { |
||
46 | if ($this->request && is_array($this->uri) && !empty($this->uri) && $resolve = $this->request->resolve()) { |
||
47 | $this->uri = ArrayHelper::merge($this->uri, ['maintenance/subscribe']); |
||
48 | return (bool)in_array($resolve[0], $this->uri, true); |
||
49 | } |
||
50 | return false; |
||
51 | } |
||
53 |