Completed
Push — 1.1-csrf-token-user ( e22bcb...d4c2fb )
by Kamil
17:31
created
src/Sylius/Component/Core/Model/ProductTaxonsAwareInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -34,11 +34,13 @@
 block discarded – undo
34 34
 
35 35
     /**
36 36
      * @param ProductTaxonInterface $productTaxon
37
+     * @return void
37 38
      */
38 39
     public function addProductTaxon(ProductTaxonInterface $productTaxon): void;
39 40
 
40 41
     /**
41 42
      * @param ProductTaxonInterface $productTaxon
43
+     * @return void
42 44
      */
43 45
     public function removeProductTaxon(ProductTaxonInterface $productTaxon): void;
44 46
 
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
@@ -27,6 +27,7 @@
 block discarded – undo
27 27
 
28 28
     /**
29 29
      * @param string|null $shortDescription
30
+     * @return void
30 31
      */
31 32
     public function setShortDescription(?string $shortDescription): void;
32 33
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/ProductVariantInterface.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -40,6 +40,7 @@  discard block
 block discarded – undo
40 40
 
41 41
     /**
42 42
      * @param float|null $weight
43
+     * @return void
43 44
      */
44 45
     public function setWeight(?float $weight): void;
45 46
 
@@ -50,6 +51,7 @@  discard block
 block discarded – undo
50 51
 
51 52
     /**
52 53
      * @param float|null $width
54
+     * @return void
53 55
      */
54 56
     public function setWidth(?float $width): void;
55 57
 
@@ -60,6 +62,7 @@  discard block
 block discarded – undo
60 62
 
61 63
     /**
62 64
      * @param float|null $height
65
+     * @return void
63 66
      */
64 67
     public function setHeight(?float $height): void;
65 68
 
@@ -70,16 +73,19 @@  discard block
 block discarded – undo
70 73
 
71 74
     /**
72 75
      * @param float|null $depth
76
+     * @return void
73 77
      */
74 78
     public function setDepth(?float $depth): void;
75 79
 
76 80
     /**
77 81
      * @param TaxCategoryInterface|null $category
82
+     * @return void
78 83
      */
79 84
     public function setTaxCategory(?TaxCategoryInterface $category): void;
80 85
 
81 86
     /**
82 87
      * @param ShippingCategoryInterface|null $shippingCategory
88
+     * @return void
83 89
      */
84 90
     public function setShippingCategory(?ShippingCategoryInterface $shippingCategory): void;
85 91
 
@@ -111,11 +117,13 @@  discard block
 block discarded – undo
111 117
 
112 118
     /**
113 119
      * @param ChannelPricingInterface $channelPricing
120
+     * @return void
114 121
      */
115 122
     public function addChannelPricing(ChannelPricingInterface $channelPricing): void;
116 123
 
117 124
     /**
118 125
      * @param ChannelPricingInterface $channelPricing
126
+     * @return void
119 127
      */
120 128
     public function removeChannelPricing(ChannelPricingInterface $channelPricing): void;
121 129
 
@@ -126,6 +134,7 @@  discard block
 block discarded – undo
126 134
 
127 135
     /**
128 136
      * @param bool $shippingRequired
137
+     * @return void
129 138
      */
130 139
     public function setShippingRequired(bool $shippingRequired): void;
131 140
 }
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
@@ -27,6 +27,7 @@
 block discarded – undo
27 27
 
28 28
     /**
29 29
      * @param int|null $perCustomerUsageLimit
30
+     * @return void
30 31
      */
31 32
     public function setPerCustomerUsageLimit(?int $perCustomerUsageLimit): void;
32 33
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/ShippingMethodInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -31,11 +31,13 @@
 block discarded – undo
31 31
 
32 32
     /**
33 33
      * @param ZoneInterface|null $zone
34
+     * @return void
34 35
      */
35 36
     public function setZone(?ZoneInterface $zone): void;
36 37
 
37 38
     /**
38 39
      * @param TaxCategoryInterface|null $category
40
+     * @return void
39 41
      */
40 42
     public function setTaxCategory(?TaxCategoryInterface $category): void;
41 43
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/TaxRateInterface.php 1 patch
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 ZoneInterface|null $zone
31
+     * @return void
31 32
      */
32 33
     public function setZone(?ZoneInterface $zone): void;
33 34
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Payment/Provider/OrderPaymentProvider.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@
 block discarded – undo
108 108
      * @param PaymentInterface $payment
109 109
      * @param OrderInterface $order
110 110
      *
111
-     * @return PaymentMethodInterface|null
111
+     * @return \Sylius\Component\Payment\Model\PaymentMethodInterface|null
112 112
      */
113 113
     private function getDefaultPaymentMethod(PaymentInterface $payment, OrderInterface $order): ?PaymentMethodInterface
114 114
     {
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
@@ -25,6 +25,7 @@
 block discarded – undo
25 25
     /**
26 26
      * @param OrderInterface $order
27 27
      * @param ZoneInterface $zone
28
+     * @return void
28 29
      */
29 30
     public function apply(OrderInterface $order, ZoneInterface $zone): void;
30 31
 }
Please login to merge, or discard this patch.
Sylius/Component/Core/Taxation/Strategy/TaxCalculationStrategyInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -24,6 +24,7 @@
 block discarded – undo
24 24
     /**
25 25
      * @param OrderInterface $order
26 26
      * @param ZoneInterface $zone
27
+     * @return void
27 28
      */
28 29
     public function applyTaxes(OrderInterface $order, ZoneInterface $zone): void;
29 30
 
Please login to merge, or discard this patch.