Conditions | 3 |
Paths | 7 |
Total Lines | 16 |
Code Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
33 | public function execute() |
||
34 | { |
||
35 | $this->init(); |
||
36 | try { |
||
37 | $this->performChecks(); |
||
38 | $this->performAction(); |
||
39 | $this->performCallBack(); |
||
40 | } catch (SlimeException $slimeException) { |
||
41 | $this->manageSlimeException($slimeException); |
||
42 | } catch (\Exception $baseException) { |
||
43 | $this->manageBaseException($baseException); |
||
44 | } |
||
45 | |||
46 | $this->formatResponse(); |
||
47 | return $this->response; |
||
48 | } |
||
49 | |||
59 |