Completed
Push — component-bundle ( 0f1f3e )
by Kamil
35:06
created
src/Sylius/Component/Addressing/Model/ProvinceInterface.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 string $name
29
+     * @return void
29 30
      */
30 31
     public function setName($name);
31 32
 
@@ -36,6 +37,7 @@  discard block
 block discarded – undo
36 37
 
37 38
     /**
38 39
      * @param string $abbreviation
40
+     * @return void
39 41
      */
40 42
     public function setAbbreviation($abbreviation);
41 43
 
@@ -46,6 +48,7 @@  discard block
 block discarded – undo
46 48
 
47 49
     /**
48 50
      * @param CountryInterface $country
51
+     * @return void
49 52
      */
50 53
     public function setCountry(CountryInterface $country = null);
51 54
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Addressing/Model/ZoneMemberInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -26,6 +26,7 @@
 block discarded – undo
26 26
 
27 27
     /**
28 28
      * @param ZoneInterface $belongsTo
29
+     * @return void
29 30
      */
30 31
     public function setBelongsTo(ZoneInterface $belongsTo = null);
31 32
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Attribute/AttributeType/AttributeTypeInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -33,6 +33,7 @@
 block discarded – undo
33 33
      * @param AttributeValueInterface $attributeValue
34 34
      * @param ExecutionContextInterface $context
35 35
      * @param array $configuration
36
+     * @return void
36 37
      */
37 38
     public function validate(AttributeValueInterface $attributeValue, ExecutionContextInterface $context, array $configuration);
38 39
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Channel/Model/ChannelAwareInterface.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 null|ChannelInterface $channel
28
+     * @return void
28 29
      */
29 30
     public function setChannel(ChannelInterface $channel = null);
30 31
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Channel/Model/ChannelInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -28,6 +28,7 @@  discard block
 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
 
@@ -38,6 +39,7 @@  discard block
 block discarded – undo
38 39
 
39 40
     /**
40 41
      * @param string $description
42
+     * @return void
41 43
      */
42 44
     public function setDescription($description);
43 45
 
@@ -48,6 +50,7 @@  discard block
 block discarded – undo
48 50
 
49 51
     /**
50 52
      * @param string $hostname
53
+     * @return void
51 54
      */
52 55
     public function setHostname($hostname);
53 56
 
@@ -58,6 +61,7 @@  discard block
 block discarded – undo
58 61
 
59 62
     /**
60 63
      * @param string $color
64
+     * @return void
61 65
      */
62 66
     public function setColor($color);
63 67
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/OrderItemInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -30,6 +30,7 @@
 block discarded – undo
30 30
 
31 31
     /**
32 32
      * @param ProductVariantInterface $variant
33
+     * @return void
33 34
      */
34 35
     public function setVariant(ProductVariantInterface $variant);
35 36
 
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/ProductTranslationInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -23,6 +23,7 @@
 block discarded – undo
23 23
 
24 24
     /**
25 25
      * @param string $shortDescription
26
+     * @return void
26 27
      */
27 28
     public function setShortDescription($shortDescription);
28 29
 }
Please login to merge, or discard this patch.
Core/Promotion/Applicator/UnitsPromotionAdjustmentsApplicatorInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -23,6 +23,7 @@
 block discarded – undo
23 23
      * @param OrderInterface $order
24 24
      * @param PromotionInterface $promotion
25 25
      * @param array $adjustmentsAmounts
26
+     * @return void
26 27
      */
27 28
     public function apply(OrderInterface $order, PromotionInterface $promotion, array $adjustmentsAmounts);
28 29
 }
Please login to merge, or discard this patch.
Sylius/Component/Core/Taxation/Applicator/OrderTaxesApplicatorInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -23,6 +23,7 @@
 block discarded – undo
23 23
     /**
24 24
      * @param OrderInterface $order
25 25
      * @param ZoneInterface $zone
26
+     * @return void
26 27
      */
27 28
     public function apply(OrderInterface $order, ZoneInterface $zone);
28 29
 }
Please login to merge, or discard this patch.