Completed
Push — master ( 0d15f5...3f1a6d )
by Kamil
22:42
created
src/Sylius/Behat/Context/Ui/Admin/ManagingProductVariantsContext.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
      */
157 157
     public function iSetItsPriceTo($price = null, $channelName = null)
158 158
     {
159
-        $this->createPage->specifyPrice($price, (null === $channelName) ? $this->sharedStorage->get('channel') :$channelName);
159
+        $this->createPage->specifyPrice($price, (null === $channelName) ? $this->sharedStorage->get('channel') : $channelName);
160 160
     }
161 161
 
162 162
     /**
@@ -519,7 +519,7 @@  discard block
 block discarded – undo
519 519
      */
520 520
     public function theVariantWithCodeShouldNotHaveShippingRequired(ProductVariantInterface $productVariant)
521 521
     {
522
-        $this->updatePage->open(['productId' => $productVariant->getProduct()->getId(),'id' => $productVariant->getId()]);
522
+        $this->updatePage->open(['productId' => $productVariant->getProduct()->getId(), 'id' => $productVariant->getId()]);
523 523
 
524 524
         Assert::false($this->updatePage->isShippingRequired());
525 525
     }
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Application/SyliusPluginTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -99,6 +99,6 @@
 block discarded – undo
99 99
     {
100 100
         $basename = preg_replace('/Plugin$/', '', $this->getName());
101 101
 
102
-        return $this->getNamespace().'\\DependencyInjection\\'.$basename.'Extension';
102
+        return $this->getNamespace() . '\\DependencyInjection\\' . $basename . 'Extension';
103 103
     }
104 104
 }
Please login to merge, or discard this patch.