1 | <?php declare(strict_types=1); |
||
7 | abstract class AbstractResource implements ResourceInterface |
||
8 | { |
||
9 | /** |
||
10 | * @var CommandBus |
||
11 | */ |
||
12 | private $commandBus; |
||
13 | |||
14 | final public function __construct(CommandBus $commandBus) |
||
18 | |||
19 | /** |
||
20 | * @return CommandBus |
||
21 | */ |
||
22 | protected function getCommandBus() |
||
26 | } |
||
27 |