Completed
Push — assert-overflow ( 0688b3...fbf83a )
by Kamil
66:00 queued 44:43
created
src/Sylius/Component/Core/Model/ImageAwareInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -44,11 +44,13 @@
 block discarded – undo
44 44
 
45 45
     /**
46 46
      * @param ImageInterface $image
47
+     * @return void
47 48
      */
48 49
     public function addImage(ImageInterface $image);
49 50
 
50 51
     /**
51 52
      * @param ImageInterface $image
53
+     * @return void
52 54
      */
53 55
     public function removeImage(ImageInterface $image);
54 56
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/ImageInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -26,6 +26,7 @@  discard block
 block discarded – undo
26 26
 
27 27
     /**
28 28
      * @param \SplFileInfo $file
29
+     * @return void
29 30
      */
30 31
     public function setFile(\SplFileInfo $file);
31 32
 
@@ -41,6 +42,7 @@  discard block
 block discarded – undo
41 42
 
42 43
     /**
43 44
      * @param string $path
45
+     * @return void
44 46
      */
45 47
     public function setPath($path);
46 48
 
@@ -51,6 +53,7 @@  discard block
 block discarded – undo
51 53
 
52 54
     /**
53 55
      * @param ImageAwareInterface|null $owner
56
+     * @return void
54 57
      */
55 58
     public function setOwner(ImageAwareInterface $owner = null);
56 59
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/ProductInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -47,6 +47,7 @@  discard block
 block discarded – undo
47 47
      * @param string $variantSelectionMethod
48 48
      *
49 49
      * @throws \InvalidArgumentException
50
+     * @return void
50 51
      */
51 52
     public function setVariantSelectionMethod($variantSelectionMethod);
52 53
 
@@ -67,6 +68,7 @@  discard block
 block discarded – undo
67 68
 
68 69
     /**
69 70
      * @param string $shortDescription
71
+     * @return void
70 72
      */
71 73
     public function setShortDescription($shortDescription);
72 74
 
@@ -77,6 +79,7 @@  discard block
 block discarded – undo
77 79
 
78 80
     /**
79 81
      * @param TaxonInterface $mainTaxon
82
+     * @return void
80 83
      */
81 84
     public function setMainTaxon(TaxonInterface $mainTaxon = null);
82 85
 
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/ProductTaxonInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -25,6 +25,7 @@  discard block
 block discarded – undo
25 25
 
26 26
     /**
27 27
      * @param ProductInterface $product
28
+     * @return void
28 29
      */
29 30
     public function setProduct(ProductInterface $product);
30 31
 
@@ -35,6 +36,7 @@  discard block
 block discarded – undo
35 36
 
36 37
     /**
37 38
      * @param TaxonInterface $taxon
39
+     * @return void
38 40
      */
39 41
     public function setTaxon(TaxonInterface $taxon);
40 42
 
@@ -45,6 +47,7 @@  discard block
 block discarded – undo
45 47
 
46 48
     /**
47 49
      * @param int $position
50
+     * @return void
48 51
      */
49 52
     public function setPosition($position);
50 53
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/ProductTaxonsAwareInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -32,11 +32,13 @@
 block discarded – undo
32 32
 
33 33
     /**
34 34
      * @param ProductTaxonInterface $productTaxon
35
+     * @return void
35 36
      */
36 37
     public function addProductTaxon(ProductTaxonInterface $productTaxon);
37 38
 
38 39
     /**
39 40
      * @param ProductTaxonInterface $productTaxon
41
+     * @return void
40 42
      */
41 43
     public function removeProductTaxon(ProductTaxonInterface $productTaxon);
42 44
 
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/ProductVariantInterface.php 2 patches
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -35,6 +35,7 @@  discard block
 block discarded – undo
35 35
 
36 36
     /**
37 37
      * @param float $weight
38
+     * @return void
38 39
      */
39 40
     public function setWeight($weight);
40 41
 
@@ -45,6 +46,7 @@  discard block
 block discarded – undo
45 46
 
46 47
     /**
47 48
      * @param float $width
49
+     * @return void
48 50
      */
49 51
     public function setWidth($width);
50 52
 
@@ -55,6 +57,7 @@  discard block
 block discarded – undo
55 57
 
56 58
     /**
57 59
      * @param float $height
60
+     * @return void
58 61
      */
59 62
     public function setHeight($height);
60 63
 
@@ -65,16 +68,19 @@  discard block
 block discarded – undo
65 68
 
66 69
     /**
67 70
      * @param float $depth
71
+     * @return void
68 72
      */
69 73
     public function setDepth($depth);
70 74
 
71 75
     /**
72 76
      * @param TaxCategoryInterface $category
77
+     * @return void
73 78
      */
74 79
     public function setTaxCategory(TaxCategoryInterface $category = null);
75 80
 
76 81
     /**
77 82
      * @param ShippingCategoryInterface $shippingCategory
83
+     * @return void
78 84
      */
79 85
     public function setShippingCategory(ShippingCategoryInterface $shippingCategory);
80 86
 
@@ -106,11 +112,13 @@  discard block
 block discarded – undo
106 112
 
107 113
     /**
108 114
      * @param ChannelPricingInterface $channelPricing
115
+     * @return void
109 116
      */
110 117
     public function addChannelPricing(ChannelPricingInterface $channelPricing);
111 118
 
112 119
     /**
113 120
      * @param ChannelPricingInterface $channelPricing
121
+     * @return void
114 122
      */
115 123
     public function removeChannelPricing(ChannelPricingInterface $channelPricing);
116 124
 }
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,8 +16,8 @@
 block discarded – undo
16 16
 use Sylius\Component\Product\Model\ProductVariantInterface as BaseVariantInterface;
17 17
 use Sylius\Component\Shipping\Model\ShippableInterface;
18 18
 use Sylius\Component\Shipping\Model\ShippingCategoryInterface;
19
-use Sylius\Component\Taxation\Model\TaxableInterface;
20 19
 use Sylius\Component\Taxation\Model\TaxCategoryInterface;
20
+use Sylius\Component\Taxation\Model\TaxableInterface;
21 21
 
22 22
 /**
23 23
  * @author Paweł Jędrzejewski <[email protected]>
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/PromotionCouponInterface.php 1 patch
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 int|null $perCustomerUsageLimit
28
+     * @return void
28 29
      */
29 30
     public function setPerCustomerUsageLimit($perCustomerUsageLimit);
30 31
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/ShippingMethodInterface.php 2 patches
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -29,11 +29,13 @@
 block discarded – undo
29 29
 
30 30
     /**
31 31
      * @param ZoneInterface|null $zone
32
+     * @return void
32 33
      */
33 34
     public function setZone(ZoneInterface $zone = null);
34 35
 
35 36
     /**
36 37
      * @param TaxCategoryInterface|null $category
38
+     * @return void
37 39
      */
38 40
     public function setTaxCategory(TaxCategoryInterface $category = null);
39 41
 }
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,8 +14,8 @@
 block discarded – undo
14 14
 use Sylius\Component\Addressing\Model\ZoneInterface;
15 15
 use Sylius\Component\Channel\Model\ChannelsAwareInterface;
16 16
 use Sylius\Component\Shipping\Model\ShippingMethodInterface as BaseShippingMethodInterface;
17
-use Sylius\Component\Taxation\Model\TaxableInterface;
18 17
 use Sylius\Component\Taxation\Model\TaxCategoryInterface;
18
+use Sylius\Component\Taxation\Model\TaxableInterface;
19 19
 
20 20
 /**
21 21
  * @author Paweł Jędrzejewski <[email protected]>
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/TaxonInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -45,11 +45,13 @@
 block discarded – undo
45 45
 
46 46
     /**
47 47
      * @param ImageInterface $image
48
+     * @return void
48 49
      */
49 50
     public function removeImage(ImageInterface $image);
50 51
 
51 52
     /**
52 53
      * @param ImageInterface $image
54
+     * @return void
53 55
      */
54 56
     public function addImage(ImageInterface $image);
55 57
 }
Please login to merge, or discard this patch.