Test Failed
Push — master ( 63a27a...772db5 )
by Martin
09:24 queued 07:03
created
symfony/src/Web/FrontendBundle/Controller/TaskController.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@  discard block
 block discarded – undo
4 4
 
5 5
 use Symfony\Component\Form\FormFactoryInterface;
6 6
 use Symfony\Component\HttpFoundation\Request;
7
-use Symfony\Component\HttpFoundation\Session\Session;
8 7
 use Symfony\Component\OptionsResolver\Exception\InvalidOptionsException;
9 8
 use Todo\Application\Task\Command;
10 9
 use Todo\Application\Task\Exception\TaskCannotBeRemovedException;
@@ -14,8 +13,6 @@  discard block
 block discarded – undo
14 13
 use Symfony\Bundle\FrameworkBundle\Controller\Controller;
15 14
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
16 15
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method;
17
-use Todo\Domain\Exception\TaskNameIsAlreadyExistedException;
18
-use Todo\Domain\Exception\TaskNameIsEmptyException;
19 16
 use Todo\Domain\Exception\TaskNotFoundException;
20 17
 use Todo\Domain\Task;
21 18
 use Web\FrontendBundle\Form\CreateTaskForm;
Please login to merge, or discard this patch.
symfony/var/SymfonyRequirements.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -223,7 +223,7 @@  discard block
 block discarded – undo
223 223
      * Adds a mandatory requirement in form of a php.ini configuration.
224 224
      *
225 225
      * @param string        $cfgName           The configuration name used for ini_get()
226
-     * @param bool|callback $evaluation        Either a boolean indicating whether the configuration should evaluate to true or false,
226
+     * @param boolean|string $evaluation        Either a boolean indicating whether the configuration should evaluate to true or false,
227 227
      *                                         or a callback function receiving the configuration value as parameter to determine the fulfillment of the requirement
228 228
      * @param bool          $approveCfgAbsence If true the Requirement will be fulfilled even if the configuration option does not exist, i.e. ini_get() returns false.
229 229
      *                                         This is helpful for abandoned configs in later PHP versions or configs of an optional extension, like Suhosin.
@@ -241,7 +241,7 @@  discard block
 block discarded – undo
241 241
      * Adds an optional recommendation in form of a php.ini configuration.
242 242
      *
243 243
      * @param string        $cfgName           The configuration name used for ini_get()
244
-     * @param bool|callback $evaluation        Either a boolean indicating whether the configuration should evaluate to true or false,
244
+     * @param string|false $evaluation        Either a boolean indicating whether the configuration should evaluate to true or false,
245 245
      *                                         or a callback function receiving the configuration value as parameter to determine the fulfillment of the requirement
246 246
      * @param bool          $approveCfgAbsence If true the Requirement will be fulfilled even if the configuration option does not exist, i.e. ini_get() returns false.
247 247
      *                                         This is helpful for abandoned configs in later PHP versions or configs of an optional extension, like Suhosin.
Please login to merge, or discard this patch.
symfony/src/Cli/CliBundle/Command/TaskCompleteCommand.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -7,12 +7,9 @@
 block discarded – undo
7 7
 use Symfony\Component\Console\Exception\LogicException;
8 8
 use Symfony\Component\Console\Input\InputArgument;
9 9
 use Symfony\Component\Console\Input\InputInterface;
10
-use Symfony\Component\Console\Input\InputOption;
11 10
 use Symfony\Component\Console\Output\OutputInterface;
12 11
 use Todo\Application\Task\Command;
13 12
 use Todo\Application\Task\Exception\TaskCannotBeSavedException;
14
-use Todo\Domain\Exception\TaskNameIsAlreadyExistedException;
15
-use Todo\Domain\Exception\TaskNameIsEmptyException;
16 13
 use Todo\Domain\Exception\TaskNotFoundException;
17 14
 
18 15
 /**
Please login to merge, or discard this patch.
symfony/src/Cli/CliBundle/Command/TaskCreateCommand.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,6 @@
 block discarded – undo
7 7
 use Symfony\Component\Console\Exception\LogicException;
8 8
 use Symfony\Component\Console\Input\InputArgument;
9 9
 use Symfony\Component\Console\Input\InputInterface;
10
-use Symfony\Component\Console\Input\InputOption;
11 10
 use Symfony\Component\Console\Output\OutputInterface;
12 11
 use Todo\Application\Task\Command;
13 12
 use Todo\Application\Task\Exception\TaskCannotBeSavedException;
Please login to merge, or discard this patch.
symfony/src/Cli/CliBundle/Command/TaskRedoCommand.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -7,12 +7,9 @@
 block discarded – undo
7 7
 use Symfony\Component\Console\Exception\LogicException;
8 8
 use Symfony\Component\Console\Input\InputArgument;
9 9
 use Symfony\Component\Console\Input\InputInterface;
10
-use Symfony\Component\Console\Input\InputOption;
11 10
 use Symfony\Component\Console\Output\OutputInterface;
12 11
 use Todo\Application\Task\Command;
13 12
 use Todo\Application\Task\Exception\TaskCannotBeSavedException;
14
-use Todo\Domain\Exception\TaskNameIsAlreadyExistedException;
15
-use Todo\Domain\Exception\TaskNameIsEmptyException;
16 13
 use Todo\Domain\Exception\TaskNotFoundException;
17 14
 
18 15
 /**
Please login to merge, or discard this patch.
symfony/src/Cli/CliBundle/Command/TaskUpdateCommand.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,6 @@
 block discarded – undo
7 7
 use Symfony\Component\Console\Exception\LogicException;
8 8
 use Symfony\Component\Console\Input\InputArgument;
9 9
 use Symfony\Component\Console\Input\InputInterface;
10
-use Symfony\Component\Console\Input\InputOption;
11 10
 use Symfony\Component\Console\Output\OutputInterface;
12 11
 use Todo\Application\Task\Command;
13 12
 use Todo\Application\Task\Exception\TaskCannotBeSavedException;
Please login to merge, or discard this patch.