| 1 | <?php |
||
| 23 | class CreateTaskMutation implements Mutation |
||
| 24 | { |
||
| 25 | private $commandBus; |
||
| 26 | private $currentUser; |
||
| 27 | private $taskResolver; |
||
| 28 | |||
| 29 | public function __construct(TokenStorageInterface $tokenStorage, CommandBus $commandBus, TaskResolver $taskResolver) |
||
| 35 | |||
| 36 | public function execute(array $values) : array |
||
| 56 | } |
||
| 57 |