Total Complexity | 2 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class ErrorsController extends Controller |
||
14 | { |
||
15 | /** @var Exception */ |
||
16 | public $exception; |
||
17 | |||
18 | public function _404(Exception $e) |
||
19 | { |
||
20 | http_response_code(404); |
||
21 | $this->title = 'Página não encontrada'; |
||
22 | $this->exception = $e; |
||
23 | |||
24 | return new View('errors/404'); |
||
25 | } |
||
26 | |||
27 | public function _503(Exception $e) |
||
35 | } |
||
36 | } |
||
37 |