Completed
Push — master ( 5bd0a6...5cfde8 )
by Kamil
20:21
created
src/Sylius/Behat/Context/Setup/ProductContext.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -140,7 +140,7 @@
 block discarded – undo
140 140
         $product = $this->productFactory->createNew();
141 141
         $product->setName($productName);
142 142
         $product->setPrice(0);
143
-        $product->setDescription('Awesome ' . $productName);
143
+        $product->setDescription('Awesome '.$productName);
144 144
         $product->addChannel($channel);
145 145
 
146 146
         $this->productRepository->add($product);
Please login to merge, or discard this patch.
src/Sylius/Behat/Context/Ui/ChannelContext.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,6 +67,6 @@
 block discarded – undo
67 67
             return;
68 68
         }
69 69
 
70
-        $this->minkSession->visit(rtrim($this->minkParameters['base_url'], '/') . '/');
70
+        $this->minkSession->visit(rtrim($this->minkParameters['base_url'], '/').'/');
71 71
     }
72 72
 }
Please login to merge, or discard this patch.
Bundle/ChannelBundle/spec/Context/FakeChannel/FakeChannelPersisterSpec.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
         $filterResponseEvent->getResponse()->willReturn($response);
80 80
 
81 81
         $response->headers = $responseHeaderBag;
82
-        $responseHeaderBag->setCookie(Argument::that(function (Cookie $cookie) {
82
+        $responseHeaderBag->setCookie(Argument::that(function(Cookie $cookie) {
83 83
             if ($cookie->getName() !== '_channel_code') {
84 84
                 return false;
85 85
             }
Please login to merge, or discard this patch.