Total Complexity | 2 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | abstract class ExecutableCommand implements ExecutableCommandInterface |
||
14 | { |
||
15 | /** @var \diecoding\aws\s3\interfaces\Bus */ |
||
16 | private $bus; |
||
17 | |||
18 | /** |
||
19 | * ExecutableCommand constructor. |
||
20 | * |
||
21 | * @param \diecoding\aws\s3\interfaces\Bus $bus |
||
22 | */ |
||
23 | public function __construct(Bus $bus) |
||
24 | { |
||
25 | $this->bus = $bus; |
||
26 | } |
||
27 | |||
28 | /** |
||
29 | * @return mixed |
||
30 | */ |
||
31 | public function execute() |
||
34 | } |
||
35 | } |
||
36 |