Completed
Push — 1.1-csrf-token-user ( e22bcb...d4c2fb )
by Kamil
17:31
created
src/Sylius/Component/Core/Currency/CurrencyStorageInterface.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 ChannelInterface $channel
26 26
      * @param string $currencyCode
27
+     * @return void
27 28
      */
28 29
     public function set(ChannelInterface $channel, string $currencyCode): void;
29 30
 
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Customer/CustomerAddressAdderInterface.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 CustomerInterface $customer
26 26
      * @param AddressInterface $address
27
+     * @return void
27 28
      */
28 29
     public function add(CustomerInterface $customer, AddressInterface $address): void;
29 30
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Customer/OrderAddressesSaverInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -22,6 +22,7 @@
 block discarded – undo
22 22
 {
23 23
     /**
24 24
      * @param OrderInterface $order
25
+     * @return void
25 26
      */
26 27
     public function saveAddresses(OrderInterface $order): void;
27 28
 }
Please login to merge, or discard this patch.
Component/Core/Inventory/Operator/OrderInventoryOperatorInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -24,11 +24,13 @@  discard block
 block discarded – undo
24 24
      * @param OrderInterface $order
25 25
      *
26 26
      * @throws \InvalidArgumentException
27
+     * @return void
27 28
      */
28 29
     public function cancel(OrderInterface $order): void;
29 30
 
30 31
     /**
31 32
      * @param OrderInterface $order
33
+     * @return void
32 34
      */
33 35
     public function hold(OrderInterface $order): void;
34 36
 
@@ -36,6 +38,7 @@  discard block
 block discarded – undo
36 38
      * @param OrderInterface $order
37 39
      *
38 40
      * @throws \InvalidArgumentException
41
+     * @return void
39 42
      */
40 43
     public function sell(OrderInterface $order): void;
41 44
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Locale/LocaleStorageInterface.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 ChannelInterface $channel
26 26
      * @param string $localeCode
27
+     * @return void
27 28
      */
28 29
     public function set(ChannelInterface $channel, string $localeCode): void;
29 30
 
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/AdminUserInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -29,6 +29,7 @@  discard block
 block discarded – undo
29 29
 
30 30
     /**
31 31
      * @param string|null $firstName
32
+     * @return void
32 33
      */
33 34
     public function setFirstName(?string $firstName): void;
34 35
 
@@ -39,6 +40,7 @@  discard block
 block discarded – undo
39 40
 
40 41
     /**
41 42
      * @param string|null $lastName
43
+     * @return void
42 44
      */
43 45
     public function setLastName(?string $lastName): void;
44 46
 
@@ -49,6 +51,7 @@  discard block
 block discarded – undo
49 51
 
50 52
     /**
51 53
      * @param string|null $code
54
+     * @return void
52 55
      */
53 56
     public function setLocaleCode(?string $code): void;
54 57
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/ChannelInterface.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -35,6 +35,7 @@  discard block
 block discarded – undo
35 35
 
36 36
     /**
37 37
      * @param CurrencyInterface|null $currency
38
+     * @return void
38 39
      */
39 40
     public function setBaseCurrency(?CurrencyInterface $currency): void;
40 41
 
@@ -45,6 +46,7 @@  discard block
 block discarded – undo
45 46
 
46 47
     /**
47 48
      * @param LocaleInterface|null $locale
49
+     * @return void
48 50
      */
49 51
     public function setDefaultLocale(?LocaleInterface $locale): void;
50 52
 
@@ -55,6 +57,7 @@  discard block
 block discarded – undo
55 57
 
56 58
     /**
57 59
      * @param ZoneInterface|null $defaultTaxZone
60
+     * @return void
58 61
      */
59 62
     public function setDefaultTaxZone(?ZoneInterface $defaultTaxZone): void;
60 63
 
@@ -65,6 +68,7 @@  discard block
 block discarded – undo
65 68
 
66 69
     /**
67 70
      * @param string|null $taxCalculationStrategy
71
+     * @return void
68 72
      */
69 73
     public function setTaxCalculationStrategy(?string $taxCalculationStrategy): void;
70 74
 
@@ -75,6 +79,7 @@  discard block
 block discarded – undo
75 79
 
76 80
     /**
77 81
      * @param string|null $themeName
82
+     * @return void
78 83
      */
79 84
     public function setThemeName(?string $themeName): void;
80 85
 
@@ -85,6 +90,7 @@  discard block
 block discarded – undo
85 90
 
86 91
     /**
87 92
      * @param string|null $contactEmail
93
+     * @return void
88 94
      */
89 95
     public function setContactEmail(?string $contactEmail): void;
90 96
 
@@ -95,6 +101,7 @@  discard block
 block discarded – undo
95 101
 
96 102
     /**
97 103
      * @param bool $skippingShippingStepAllowed
104
+     * @return void
98 105
      */
99 106
     public function setSkippingShippingStepAllowed(bool $skippingShippingStepAllowed): void;
100 107
 
@@ -105,6 +112,7 @@  discard block
 block discarded – undo
105 112
 
106 113
     /**
107 114
      * @param bool $skippingPaymentStepAllowed
115
+     * @return void
108 116
      */
109 117
     public function setSkippingPaymentStepAllowed(bool $skippingPaymentStepAllowed): void;
110 118
 
@@ -115,6 +123,7 @@  discard block
 block discarded – undo
115 123
 
116 124
     /**
117 125
      * @param bool $accountVerificationRequired
126
+     * @return void
118 127
      */
119 128
     public function setAccountVerificationRequired(bool $accountVerificationRequired): void;
120 129
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/ChannelPricingInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -29,6 +29,7 @@  discard block
 block discarded – undo
29 29
 
30 30
     /**
31 31
      * @param ProductVariantInterface|null $productVariant
32
+     * @return void
32 33
      */
33 34
     public function setProductVariant(?ProductVariantInterface $productVariant): void;
34 35
 
@@ -39,6 +40,7 @@  discard block
 block discarded – undo
39 40
 
40 41
     /**
41 42
      * @param int|null $price
43
+     * @return void
42 44
      */
43 45
     public function setPrice(?int $price): void;
44 46
 
@@ -49,6 +51,7 @@  discard block
 block discarded – undo
49 51
 
50 52
     /**
51 53
      * @param string|null $channelCode
54
+     * @return void
52 55
      */
53 56
     public function setChannelCode(?string $channelCode): void;
54 57
 
@@ -59,6 +62,7 @@  discard block
 block discarded – undo
59 62
 
60 63
     /**
61 64
      * @param int|null $originalPrice
65
+     * @return void
62 66
      */
63 67
     public function setOriginalPrice(?int $originalPrice): void;
64 68
 
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/ImageInterface.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 string|null $type
30
+     * @return void
30 31
      */
31 32
     public function setType(?string $type): void;
32 33
 
@@ -37,6 +38,7 @@  discard block
 block discarded – undo
37 38
 
38 39
     /**
39 40
      * @param \SplFileInfo|null $file
41
+     * @return void
40 42
      */
41 43
     public function setFile(?\SplFileInfo $file): void;
42 44
 
@@ -52,6 +54,7 @@  discard block
 block discarded – undo
52 54
 
53 55
     /**
54 56
      * @param string|null $path
57
+     * @return void
55 58
      */
56 59
     public function setPath(?string $path): void;
57 60
 
@@ -62,6 +65,7 @@  discard block
 block discarded – undo
62 65
 
63 66
     /**
64 67
      * @param object|null $owner
68
+     * @return void
65 69
      */
66 70
     public function setOwner($owner): void;
67 71
 }
Please login to merge, or discard this patch.