Passed
Pull Request — master (#11)
by Jim
01:56
created
Command/TaskCommand.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
Unused Use Statements   -6 removed lines patch added patch discarded remove patch
@@ -3,15 +3,9 @@
 block discarded – undo
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
 {
Please login to merge, or discard this patch.