@@ -18,7 +18,7 @@ |
||
18 | 18 | /** |
19 | 19 | * @param InputInterface $input |
20 | 20 | * @param OutputInterface $output |
21 | - * @return int|null |
|
21 | + * @return null|boolean |
|
22 | 22 | */ |
23 | 23 | public function execute(InputInterface $input, OutputInterface $output) |
24 | 24 | { |
@@ -3,15 +3,9 @@ |
||
3 | 3 | namespace Jarobe\TaskRunnerBundle\Command; |
4 | 4 | |
5 | 5 | use Jarobe\TaskRunnerBundle\Entity\TaskEvent; |
6 | -use Jarobe\TaskRunnerBundle\Manager\TaskEventManager; |
|
7 | -use Jarobe\TaskRunnerBundle\Manager\TaskManager; |
|
8 | 6 | use Jarobe\TaskRunnerBundle\Model\TaskBuilder; |
9 | -use Jarobe\TaskRunnerBundle\TaskType\TaskTypeInterface; |
|
10 | -use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand; |
|
11 | 7 | use Symfony\Component\Console\Input\InputInterface; |
12 | 8 | use Symfony\Component\Console\Output\OutputInterface; |
13 | -use Symfony\Component\Validator\ConstraintViolationInterface; |
|
14 | -use Symfony\Component\Validator\Validator\ValidatorInterface; |
|
15 | 9 | |
16 | 10 | abstract class TaskCommand extends AbstractTaskCommand |
17 | 11 | { |