Completed
Push — pull-request/7087 ( f84acd )
by Kamil
24:59
created
src/Sylius/Component/Core/Model/ChannelPricingInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -27,6 +27,7 @@  discard block
 block discarded – undo
27 27
 
28 28
     /**
29 29
      * @param ProductVariantInterface|null $productVariant
30
+     * @return void
30 31
      */
31 32
     public function setProductVariant(ProductVariantInterface $productVariant = null);
32 33
 
@@ -37,6 +38,7 @@  discard block
 block discarded – undo
37 38
 
38 39
     /**
39 40
      * @param int $price
41
+     * @return void
40 42
      */
41 43
     public function setPrice($price);
42 44
 
@@ -47,6 +49,7 @@  discard block
 block discarded – undo
47 49
 
48 50
     /**
49 51
      * @param string $channelCode
52
+     * @return void
50 53
      */
51 54
     public function setChannelCode($channelCode);
52 55
 
@@ -57,6 +60,7 @@  discard block
 block discarded – undo
57 60
 
58 61
     /**
59 62
      * @param int $originalPrice
63
+     * @return void
60 64
      */
61 65
     public function setOriginalPrice($originalPrice);
62 66
 
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/ProductImageInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -30,11 +30,13 @@
 block discarded – undo
30 30
 
31 31
     /**
32 32
      * @param ProductVariantInterface $productVariant
33
+     * @return void
33 34
      */
34 35
     public function addProductVariant(ProductVariantInterface $productVariant);
35 36
 
36 37
     /**
37 38
      * @param ProductVariantInterface $productVariant
39
+     * @return void
38 40
      */
39 41
     public function removeProductVariant(ProductVariantInterface $productVariant);
40 42
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Context/Ui/Admin/ManagingProductVariantsContext.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -165,7 +165,7 @@
 block discarded – undo
165 165
      */
166 166
     public function iSetItsPriceTo($price = null, $channelName = null)
167 167
     {
168
-        $this->createPage->specifyPrice($price, (null === $channelName) ? $this->sharedStorage->get('channel') :$channelName);
168
+        $this->createPage->specifyPrice($price, (null === $channelName) ? $this->sharedStorage->get('channel') : $channelName);
169 169
     }
170 170
 
171 171
     /**
Please login to merge, or discard this patch.