Completed
Push — travis-trusty ( 62da84...e797f4 )
by Kamil
76:02 queued 52:05
created
src/Sylius/Component/Product/Model/ProductAssociationInterface.php 2 patches
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -27,6 +27,7 @@  discard block
 block discarded – undo
27 27
 
28 28
     /**
29 29
      * @param ProductAssociationTypeInterface $type
30
+     * @return void
30 31
      */
31 32
     public function setType(ProductAssociationTypeInterface $type);
32 33
 
@@ -37,6 +38,7 @@  discard block
 block discarded – undo
37 38
 
38 39
     /**
39 40
      * @param ProductInterface|null $owner
41
+     * @return void
40 42
      */
41 43
     public function setOwner(ProductInterface $owner = null);
42 44
 
@@ -47,11 +49,13 @@  discard block
 block discarded – undo
47 49
 
48 50
     /**
49 51
      * @param ProductInterface $product
52
+     * @return void
50 53
      */
51 54
     public function addAssociatedProduct(ProductInterface $product);
52 55
 
53 56
     /**
54 57
      * @param ProductInterface $product
58
+     * @return void
55 59
      */
56 60
     public function removeAssociatedProduct(ProductInterface $product);
57 61
 
@@ -62,5 +66,8 @@  discard block
 block discarded – undo
62 66
      */
63 67
     public function hasAssociatedProduct(ProductInterface $product);
64 68
 
69
+    /**
70
+     * @return void
71
+     */
65 72
     public function clearAssociatedProducts();
66 73
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Component\Product\Model;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Component/Product/Model/ProductAssociationTypeInterface.php 2 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -28,6 +28,7 @@
 block discarded – undo
28 28
 
29 29
     /**
30 30
      * @param string $name
31
+     * @return void
31 32
      */
32 33
     public function setName($name);
33 34
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Component\Product\Model;
15 15
 
Please login to merge, or discard this patch.
Component/Product/Model/ProductAssociationTypeTranslationInterface.php 2 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -28,6 +28,7 @@
 block discarded – undo
28 28
 
29 29
     /**
30 30
      * @param string $name
31
+     * @return void
31 32
      */
32 33
     public function setName($name);
33 34
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Component\Product\Model;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Component/Product/Model/ProductAttributeValueInterface.php 2 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -25,6 +25,7 @@
 block discarded – undo
25 25
 
26 26
     /**
27 27
      * @param ProductInterface|null $product
28
+     * @return void
28 29
      */
29 30
     public function setProduct(ProductInterface $product = null);
30 31
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Component\Product\Model;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Component/Product/Model/ProductOptionInterface.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -32,6 +32,7 @@  discard block
 block discarded – undo
32 32
 
33 33
     /**
34 34
      * @param int $position
35
+     * @return void
35 36
      */
36 37
     public function setPosition($position);
37 38
 
@@ -42,11 +43,13 @@  discard block
 block discarded – undo
42 43
 
43 44
     /**
44 45
      * @param ProductOptionValueInterface $optionValue
46
+     * @return void
45 47
      */
46 48
     public function addValue(ProductOptionValueInterface $optionValue);
47 49
 
48 50
     /**
49 51
      * @param ProductOptionValueInterface $optionValue
52
+     * @return void
50 53
      */
51 54
     public function removeValue(ProductOptionValueInterface $optionValue);
52 55
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Component\Product\Model;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Component/Product/Model/ProductOptionTranslationInterface.php 2 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -28,6 +28,7 @@
 block discarded – undo
28 28
 
29 29
     /**
30 30
      * @param string $name
31
+     * @return void
31 32
      */
32 33
     public function setName($name);
33 34
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Component\Product\Model;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Component/Product/Model/ProductOptionValueInterface.php 2 patches
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -27,6 +27,7 @@  discard block
 block discarded – undo
27 27
 
28 28
     /**
29 29
      * @param ProductOptionInterface $option
30
+     * @return void
30 31
      */
31 32
     public function setOption(ProductOptionInterface $option = null);
32 33
 
@@ -37,6 +38,7 @@  discard block
 block discarded – undo
37 38
 
38 39
     /**
39 40
      * @param string $value
41
+     * @return void
40 42
      */
41 43
     public function setValue($value);
42 44
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Component\Product\Model;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Component/Product/Model/ProductVariantTranslationInterface.php 2 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -28,6 +28,7 @@
 block discarded – undo
28 28
 
29 29
     /**
30 30
      * @param string $name
31
+     * @return void
31 32
      */
32 33
     public function setName($name);
33 34
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Component\Product\Model;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Component/Promotion/Action/PromotionApplicatorInterface.php 2 patches
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -22,12 +22,14 @@
 block discarded – undo
22 22
     /**
23 23
      * @param PromotionSubjectInterface $subject
24 24
      * @param PromotionInterface $promotion
25
+     * @return void
25 26
      */
26 27
     public function apply(PromotionSubjectInterface $subject, PromotionInterface $promotion);
27 28
 
28 29
     /**
29 30
      * @param PromotionSubjectInterface $subject
30 31
      * @param PromotionInterface $promotion
32
+     * @return void
31 33
      */
32 34
     public function revert(PromotionSubjectInterface $subject, PromotionInterface $promotion);
33 35
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Component\Promotion\Action;
15 15
 
Please login to merge, or discard this patch.