1 | <?php |
||
11 | abstract class ApiAction extends Action |
||
12 | { |
||
13 | protected $code; |
||
14 | protected $message; |
||
15 | protected $payload; |
||
16 | protected $pagination = null; |
||
17 | |||
18 | protected function init() |
||
24 | |||
25 | protected function performChecks() |
||
29 | |||
30 | protected function performCallBack() |
||
34 | |||
35 | protected function formatResponse() |
||
44 | |||
45 | protected function manageSlimeException(SlimeException $slimeException) |
||
49 | |||
50 | protected function manageBaseException(\Exception $baseException) |
||
55 | |||
56 | private function buildBody() |
||
69 | } |