Passed
Pull Request — master (#163)
by
unknown
04:53
created
src/Controller/Action/Shop/ListProductsAction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
 
63 63
     public function __invoke(Request $request): Response
64 64
     {
65
-        $form = $this->formFactory->create(  ShopProductsFilterType::class);
65
+        $form = $this->formFactory->create(ShopProductsFilterType::class);
66 66
         $form->handleRequest($request);
67 67
         $requestData = array_merge(
68 68
             $form->getData(),
Please login to merge, or discard this patch.
bin/create_node_symlink.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
     exec(sprintf('mklink /J %s %s 2> NUL', NODE_MODULES_FOLDER_NAME, PATH_TO_NODE_MODULES), $output, $returnCode);
30 30
     $success = $returnCode === 0;
31 31
     if (!$success) {
32
-	echo '> Failed o create the required symlink' . PHP_EOL;
32
+    echo '> Failed o create the required symlink' . PHP_EOL;
33 33
         exit(2);
34 34
     }
35 35
 }
Please login to merge, or discard this patch.