Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 8 |
Ratio | 88.89 % |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
48 | View Code Duplication | private function onBackend() |
|
49 | { |
||
50 | $url = $this->request->url(); |
||
51 | if (str_contains($url, config('asgard.core.core.admin-prefix'))) { |
||
52 | return true; |
||
53 | } |
||
54 | |||
55 | return false; |
||
56 | } |
||
57 | } |
||
58 |