1 | <?php |
||
12 | class SilentBus implements CommandBus |
||
13 | { |
||
14 | /** |
||
15 | * @var Repository |
||
16 | */ |
||
17 | private $definitions; |
||
18 | |||
19 | /** |
||
20 | * @param Repository $definitions |
||
21 | */ |
||
22 | public function __construct(Repository $definitions) |
||
26 | |||
27 | /** |
||
28 | * @param Command $command |
||
29 | */ |
||
30 | public function dispatch(Command $command) |
||
46 | } |
||
47 |