Failed Conditions
Pull Request — master (#256)
by
unknown
03:07
created
src/FilterExtension/FilterExtensionInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Sylius\ShopApiPlugin\FilterExtension;
6 6
 
Please login to merge, or discard this patch.
src/FilterExtension/Filters/BooleanFilter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Sylius\ShopApiPlugin\FilterExtension\Filters;
6 6
 
Please login to merge, or discard this patch.
src/FilterExtension/Filters/SearchFilter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Sylius\ShopApiPlugin\FilterExtension\Filters;
6 6
 
@@ -237,7 +237,7 @@  discard block
 block discarded – undo
237 237
      */
238 238
     protected function createWrapCase(bool $caseSensitive): \Closure
239 239
     {
240
-        return function (string $expr) use ($caseSensitive): string {
240
+        return function(string $expr) use ($caseSensitive): string {
241 241
             if ($caseSensitive) {
242 242
                 return $expr;
243 243
             }
Please login to merge, or discard this patch.