1 | <?php |
||
24 | class ErrorController extends AppController |
||
25 | { |
||
26 | /** |
||
27 | * Initialization hook method. |
||
28 | * |
||
29 | * @return void |
||
30 | */ |
||
31 | public function initialize() |
||
35 | |||
36 | /** |
||
37 | * beforeFilter callback. |
||
38 | * |
||
39 | * @param \Cake\Event\Event $event Event. |
||
40 | * @return \Cake\Network\Response|null|void |
||
41 | */ |
||
42 | public function beforeFilter(Event $event) |
||
45 | |||
46 | /** |
||
47 | * beforeRender callback. |
||
48 | * |
||
49 | * @param \Cake\Event\Event $event Event. |
||
50 | * @return \Cake\Network\Response|null|void |
||
51 | */ |
||
52 | public function beforeRender(Event $event) |
||
58 | |||
59 | /** |
||
60 | * afterFilter callback. |
||
61 | * |
||
62 | * @param \Cake\Event\Event $event Event. |
||
63 | * @return \Cake\Network\Response|null|void |
||
64 | */ |
||
65 | public function afterFilter(Event $event) |
||
68 | } |
||
69 |