Passed
Push — master ( 965a64...0a90fd )
by Mikołaj
03:42
created
src/Controller/Action/Shop/ListProductsAction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
  * an email on [email protected]. 
9 9
  */
10 10
 
11
-declare(strict_types=1);
11
+declare(strict_types = 1);
12 12
 
13 13
 namespace BitBag\SyliusElasticsearchPlugin\Controller\Action\Shop;
14 14
 
Please login to merge, or discard this patch.
src/Controller/RequestDataHandler/ShopProductListDataHandler.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
  * an email on [email protected]. 
9 9
  */
10 10
 
11
-declare(strict_types=1);
11
+declare(strict_types = 1);
12 12
 
13 13
 namespace BitBag\SyliusElasticsearchPlugin\Controller\RequestDataHandler;
14 14
 
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
 
122 122
         foreach ($requestData[$formName] as $key => $value) {
123 123
             if (is_array($value) && 0 === strpos($key, $propertyPrefix)) {
124
-                $data[$key] = array_map(function (string $property): string {
124
+                $data[$key] = array_map(function(string $property): string {
125 125
                     return strtolower($property);
126 126
                 }, $value);
127 127
             }
Please login to merge, or discard this patch.