Completed
Push — master ( dcf652...3d17c5 )
by Vincenzo
02:18
created

ActionStub::performChecks()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 1
nc 1
nop 0
1
<?php
2
3
4
namespace Tests\Helpers\Stubs;
5
6
7
use App\Lib\Slime\Exceptions\SlimeException;
8
use App\Lib\Slime\RestAction\Action;
9
10
class ActionStub extends Action
11
{
12
13
    protected function init()
14
    {
15
        // TODO: Implement init() method.
16
    }
17
18
    protected function performChecks()
19
    {
20
        // TODO: Implement performChecks() method.
21
    }
22
23
    protected function performAction()
24
    {
25
        // TODO: Implement performAction() method.
26
    }
27
28
    protected function performCallBack()
29
    {
30
        // TODO: Implement performCallBack() method.
31
    }
32
33
    protected function formatResponse()
34
    {
35
        // TODO: Implement formatResponse() method.
36
    }
37
38
    protected function manageSlimeException(SlimeException $slimeException)
39
    {
40
        // TODO: Implement manageSlimeException() method.
41
    }
42
43
    protected function manageBaseException(\Exception $baseException)
44
    {
45
        // TODO: Implement manageBaseException() method.
46
    }
47
}