| Total Complexity | 2 | 
| Total Lines | 24 | 
| Duplicated Lines | 0 % | 
| Coverage | 0% | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 7 | abstract class AbstractTaskDefinitionDispatcher implements TaskDefinitionDispatcherInterface | ||
| 8 | { | ||
| 9 | /** | ||
| 10 | * @var DispatcherFinder | ||
| 11 | */ | ||
| 12 | protected $dispatcherFinder; | ||
| 13 | |||
| 14 | /** | ||
| 15 | * @param DispatcherFinder $dispatcherFinder | ||
| 16 | */ | ||
| 17 | public function setDispatcherFinder(DispatcherFinder $dispatcherFinder) | ||
| 20 | } | ||
| 21 | |||
| 22 | /** | ||
| 23 | * @param TaskDefinitionInterface $taskDefinition | ||
| 24 | * @return DispatchResultInterface | ||
| 25 | * @throws \Deployee\Plugins\Deploy\Exception\DispatcherException | ||
| 26 | */ | ||
| 27 | protected function delegate(TaskDefinitionInterface $taskDefinition): DispatchResultInterface | ||
| 31 | } | ||
| 32 | } |