| 1 | <?php | ||
| 7 | class Registry implements RegistryInterface | ||
| 8 | { | ||
| 9 | private $discoverer; | ||
| 10 | |||
| 11 | 2 | public function __construct(DiscoveryInterface $taskDiscoverer) | |
| 15 | |||
| 16 | /** | ||
| 17 | * Returns the FQCN for a Task name | ||
| 18 | * | ||
| 19 | * @param $name | ||
| 20 | * @return string | ||
| 21 | * @throws TaskException | ||
| 22 | */ | ||
| 23 | 2 | public function getClassByName($name) | |
| 35 | } | ||
| 36 | |||
| 37 |