| 1 | <?php |
||
| 13 | class TaskManager |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var TaskEventManager |
||
| 17 | */ |
||
| 18 | private $taskEventManager; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @var HydratorInterface |
||
| 22 | */ |
||
| 23 | private $hydrator; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @var ProcessorInterface |
||
| 27 | */ |
||
| 28 | private $processor; |
||
| 29 | |||
| 30 | public function __construct( |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @param TaskEventInterface $taskEvent |
||
| 42 | * @return TaskEventInterface |
||
| 43 | */ |
||
| 44 | public function process(TaskEventInterface $taskEvent) |
||
| 55 | } |
||
| 56 |