Total Complexity | 2 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
19 | final class QueryDispatcher implements QueryDispatcherInterface |
||
20 | { |
||
21 | /** |
||
22 | * @var QueryCreatedEventFactoryInterface |
||
23 | */ |
||
24 | private $factory; |
||
25 | /** |
||
26 | * @var EventDispatcherInterface |
||
27 | */ |
||
28 | private $eventDispatcher; |
||
29 | |||
30 | public function __construct( |
||
37 | } |
||
38 | |||
39 | public function dispatchNewQuery(AbstractQuery $boolQuery): QueryCreatedEventInterface |
||
47 |