| Total Complexity | 3 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | class NotFoundComponent extends CachableBaseComponent |
||
| 14 | { |
||
| 15 | protected $template = '404'; |
||
| 16 | |||
| 17 | public function run(Storage $storage) |
||
| 20 | } |
||
| 21 | |||
| 22 | protected function set404Header() |
||
| 23 | { |
||
| 24 | header("HTTP/1.0 404 Not Found"); |
||
| 25 | } |
||
| 26 | |||
| 27 | protected function set404Template($template = '404') |
||
| 30 | } |
||
| 31 | |||
| 32 | } |