1 | <?php |
||
22 | class TacticianCommandBus implements CommandBus |
||
23 | { |
||
24 | /** |
||
25 | * The constructor type hint is removed to satisfy the container |
||
26 | * lazy loading in the Drupal kernel with Ocramius' ProxyManager. |
||
27 | * |
||
28 | * @var Tactician |
||
29 | */ |
||
30 | private $commandBus; |
||
31 | |||
32 | public function __construct($commandBus) |
||
36 | |||
37 | public function handle($command) : void |
||
41 | } |
||
42 |