| Total Complexity | 4 |
| Total Lines | 33 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class DispatcherFinder |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var ContainerInterface |
||
| 13 | */ |
||
| 14 | private $container; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @param ContainerInterface $container |
||
| 18 | */ |
||
| 19 | public function __construct(ContainerInterface $container) |
||
| 22 | } |
||
| 23 | |||
| 24 | |||
| 25 | /** |
||
| 26 | * @param TaskDefinitionInterface $taskDefinition |
||
| 27 | * @return TaskDefinitionDispatcherInterface |
||
| 28 | * @throws DispatcherException |
||
| 29 | */ |
||
| 30 | public function findTaskDispatcherByDefinition(TaskDefinitionInterface $taskDefinition): TaskDefinitionDispatcherInterface |
||
| 42 | } |
||
| 43 | } |