Test Failed
Push — master ( d3990f...a5a1b1 )
by Martin
02:27
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.
symfony/tests/_support/_generated/AcceptanceTesterActions.php 2 patches
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -180,7 +180,7 @@  discard block
 block discarded – undo
180 180
      * $I->amOnPage('/register');
181 181
      * ```
182 182
      *
183
-     * @param $page
183
+     * @param string $page
184 184
      * @see \Codeception\Lib\InnerBrowser::amOnPage()
185 185
      */
186 186
     public function amOnPage($page) {
@@ -218,7 +218,7 @@  discard block
 block discarded – undo
218 218
      * ?>
219 219
      * ```
220 220
      *
221
-     * @param $link
221
+     * @param string $link
222 222
      * @param $context
223 223
      * @see \Codeception\Lib\InnerBrowser::click()
224 224
      */
@@ -1407,7 +1407,7 @@  discard block
 block discarded – undo
1407 1407
      * ?>
1408 1408
      * ```
1409 1409
      *
1410
-     * @param $field
1410
+     * @param string $field
1411 1411
      * @param $value
1412 1412
      * @see \Codeception\Lib\InnerBrowser::fillField()
1413 1413
      */
@@ -1446,7 +1446,7 @@  discard block
 block discarded – undo
1446 1446
      * ?>
1447 1447
      * ```
1448 1448
      *
1449
-     * @param $select
1449
+     * @param string $select
1450 1450
      * @param $option
1451 1451
      * @see \Codeception\Lib\InnerBrowser::selectOption()
1452 1452
      */
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
 // @codingStandardsIgnoreFile
7 7
 
8 8
 use Codeception\Module\PhpBrowser;
9
-use Helper\Acceptance;
10 9
 use Codeception\Module\Db;
11 10
 
12 11
 trait AcceptanceTesterActions
Please login to merge, or discard this patch.