Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Lines | 7 |
Ratio | 100 % |
Changes | 0 |
1 | <?php |
||
13 | View Code Duplication | public function error404() |
|
14 | { |
||
15 | $response = $this->getDi()->get('response'); |
||
|
|||
16 | $response->setHeader(404, 'Not Found'); |
||
17 | $response->setContent(include __DIR__ . '/../../../Index/views/error/404.phtml'); |
||
18 | |||
19 | } |
||
20 | |||
30 |
Methods can only be called on objects. This check looks for methods being called on variables that have been inferred to never be objects.