Total Complexity | 9 |
Total Lines | 45 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
11 | abstract class AbstractProcessNotifier implements ProcessNotifierInterface |
||
12 | { |
||
13 | public function onStartProcess(ProcessState $state, StepInterface $step) |
||
14 | { |
||
15 | return; |
||
16 | } |
||
17 | |||
18 | public function onStartIterableProcess(ProcessState $state, StepInterface $step) |
||
21 | } |
||
22 | |||
23 | public function onUpdateIterableProcess(ProcessState $state, StepInterface $step) |
||
24 | { |
||
25 | return; |
||
26 | } |
||
27 | |||
28 | public function onEndProcess(ProcessState $state, StepInterface $step) |
||
29 | { |
||
30 | return; |
||
31 | } |
||
32 | |||
33 | public function onExecutedProcess(ProcessState $state, StepInterface $step) |
||
34 | { |
||
35 | return; |
||
36 | } |
||
37 | |||
38 | public function onSuccessLoop(ProcessState $state, StepInterface $step) |
||
39 | { |
||
40 | return; |
||
41 | } |
||
42 | |||
43 | public function onFailedLoop(ProcessState $state, StepInterface $step) |
||
46 | } |
||
47 | |||
48 | public function onStartRunner(ProcessState $state) |
||
49 | { |
||
50 | return; |
||
51 | } |
||
52 | |||
53 | public function onEndRunner(ProcessState $state, bool $successfull) |
||
56 | } |
||
57 | } |
||
58 |