Total Complexity | 2 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
15 | class SingleBus implements BusFacadeInterface |
||
16 | { |
||
17 | /** @var ImplementorInterface */ |
||
18 | private $implementor; |
||
19 | |||
20 | /** |
||
21 | * Bus constructor. |
||
22 | * |
||
23 | * @param ImplementorInterface $implementor |
||
24 | */ |
||
25 | public function __construct( |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * @inheritDoc |
||
33 | */ |
||
34 | public function execute(UseCaseCommandInterface $command): ResponseInterface |
||
41 |