Test Failed
Push — master ( d3990f...a5a1b1 )
by Martin
02:27
created
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.
laravel/app/Providers/RouteServiceProvider.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -52,8 +52,8 @@  discard block
 block discarded – undo
52 52
     protected function mapWebRoutes()
53 53
     {
54 54
         Route::middleware('web')
55
-             ->namespace($this->namespace)
56
-             ->group(base_path('routes/web.php'));
55
+                ->namespace($this->namespace)
56
+                ->group(base_path('routes/web.php'));
57 57
     }
58 58
 
59 59
     /**
@@ -66,8 +66,8 @@  discard block
 block discarded – undo
66 66
     protected function mapApiRoutes()
67 67
     {
68 68
         Route::prefix('api')
69
-             ->middleware('api')
70
-             ->namespace($this->namespace)
71
-             ->group(base_path('routes/api.php'));
69
+                ->middleware('api')
70
+                ->namespace($this->namespace)
71
+                ->group(base_path('routes/api.php'));
72 72
     }
73 73
 }
Please login to merge, or discard this patch.
symfony/tests/_support/_generated/AcceptanceTesterActions.php 1 patch
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.