Completed
Push — template-events ( d018fc )
by Kamil
41:52 queued 13:22
created
Sylius/Bundle/ProductBundle/Form/Type/ProductOptionValueCollectionType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
             $builder->add((string) $option->getCode(), ProductOptionValueChoiceType::class, [
49 49
                 'label' => $option->getName() ?: $option->getCode(),
50 50
                 'option' => $option,
51
-                'property_path' => '['.$i.']',
51
+                'property_path' => '[' . $i . ']',
52 52
                 'block_name' => 'entry',
53 53
             ]);
54 54
         }
Please login to merge, or discard this patch.
src/Sylius/Bundle/ProductBundle/Form/Type/ProductVariantMatchType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
             $builder->add($option->getCode(), ProductOptionValueChoiceType::class, [
35 35
                 'label' => $option->getName(),
36 36
                 'option' => $option,
37
-                'property_path' => '['.$i.']',
37
+                'property_path' => '[' . $i . ']',
38 38
                 'block_name' => 'entry',
39 39
             ]);
40 40
         }
Please login to merge, or discard this patch.
tests/Controller/OrderApiTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@
 block discarded – undo
107 107
 
108 108
         $this->addItemToCart($cartId);
109 109
 
110
-        $this->client->request('PATCH',  '/api/v1/carts/' . $cartId, [], [], static::$authorizedHeaderWithAccept, '{"promotionCoupon": "BANANAS"}');
110
+        $this->client->request('PATCH', '/api/v1/carts/' . $cartId, [], [], static::$authorizedHeaderWithAccept, '{"promotionCoupon": "BANANAS"}');
111 111
 
112 112
         $this->addressOrder($cartId);
113 113
         $this->selectOrderShippingMethod($cartId);
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Fixture/Factory/ChannelExampleFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
     ) {
72 72
         $this->channelFactory = $channelFactory;
73 73
         $this->localeRepository = $localeRepository;
74
-        $this->currencyRepository= $currencyRepository;
74
+        $this->currencyRepository = $currencyRepository;
75 75
         $this->zoneRepository = $zoneRepository;
76 76
 
77 77
         $this->faker = \Faker\Factory::create();
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Command/InstallCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
76 76
                     count($this->commands),
77 77
                     $command['message']
78 78
                 ));
79
-                $this->commandExecutor->runCommand('sylius:install:'.$command['command'], [], $output);
79
+                $this->commandExecutor->runCommand('sylius:install:' . $command['command'], [], $output);
80 80
             } catch (RuntimeException $exception) {
81 81
                 $errored = true;
82 82
             }
Please login to merge, or discard this patch.