Completed
Push — locale-everywhere ( e59a39...39ada0 )
by Kamil
66:00 queued 37:17
created
src/Sylius/Component/Core/Currency/CurrencyStorageInterface.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
      * @param ChannelInterface $channel
24 24
      * @param string $currencyCode
25
+     * @return void
25 26
      */
26 27
     public function set(ChannelInterface $channel, $currencyCode);
27 28
 
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
@@ -22,6 +22,7 @@
 block discarded – undo
22 22
     /**
23 23
      * @param CustomerInterface $customer
24 24
      * @param AddressInterface $address
25
+     * @return void
25 26
      */
26 27
     public function add(CustomerInterface $customer, AddressInterface $address);
27 28
 }
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
@@ -20,6 +20,7 @@
 block discarded – undo
20 20
 {
21 21
     /**
22 22
      * @param OrderInterface $order
23
+     * @return void
23 24
      */
24 25
     public function saveAddresses(OrderInterface $order);
25 26
 }
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
@@ -22,11 +22,13 @@  discard block
 block discarded – undo
22 22
      * @param OrderInterface $order
23 23
      *
24 24
      * @throws \InvalidArgumentException
25
+     * @return void
25 26
      */
26 27
     public function cancel(OrderInterface $order);
27 28
     
28 29
     /**
29 30
      * @param OrderInterface $order
31
+     * @return void
30 32
      */
31 33
     public function hold(OrderInterface $order);
32 34
 
@@ -34,6 +36,7 @@  discard block
 block discarded – undo
34 36
      * @param OrderInterface $order
35 37
      *
36 38
      * @throws \InvalidArgumentException
39
+     * @return void
37 40
      */
38 41
     public function sell(OrderInterface $order);
39 42
 }
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
@@ -22,6 +22,7 @@
 block discarded – undo
22 22
     /**
23 23
      * @param ChannelInterface $channel
24 24
      * @param string $localeCode
25
+     * @return void
25 26
      */
26 27
     public function set(ChannelInterface $channel, $localeCode);
27 28
 
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
@@ -27,6 +27,7 @@  discard block
 block discarded – undo
27 27
 
28 28
     /**
29 29
      * @param string $firstName
30
+     * @return void
30 31
      */
31 32
     public function setFirstName($firstName);
32 33
 
@@ -37,6 +38,7 @@  discard block
 block discarded – undo
37 38
 
38 39
     /**
39 40
      * @param string $lastName
41
+     * @return void
40 42
      */
41 43
     public function setLastName($lastName);
42 44
 
@@ -47,6 +49,7 @@  discard block
 block discarded – undo
47 49
 
48 50
     /**
49 51
      * @param string $code
52
+     * @return void
50 53
      */
51 54
     public function setLocaleCode($code);
52 55
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/ChannelPricingInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -17,6 +17,7 @@  discard block
 block discarded – undo
17 17
 
18 18
     /**
19 19
      * @param ProductVariantInterface|null $productVariant
20
+     * @return void
20 21
      */
21 22
     public function setProductVariant(ProductVariantInterface $productVariant = null);
22 23
 
@@ -27,6 +28,7 @@  discard block
 block discarded – undo
27 28
 
28 29
     /**
29 30
      * @param int $price
31
+     * @return void
30 32
      */
31 33
     public function setPrice($price);
32 34
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/CustomerInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -33,16 +33,19 @@  discard block
 block discarded – undo
33 33
 
34 34
     /**
35 35
      * @param AddressInterface|null $defaultAddress
36
+     * @return void
36 37
      */
37 38
     public function setDefaultAddress(AddressInterface $defaultAddress = null);
38 39
 
39 40
     /**
40 41
      * @param AddressInterface $address
42
+     * @return void
41 43
      */
42 44
     public function addAddress(AddressInterface $address);
43 45
 
44 46
     /**
45 47
      * @param AddressInterface $address
48
+     * @return void
46 49
      */
47 50
     public function removeAddress(AddressInterface $address);
48 51
 
@@ -65,6 +68,7 @@  discard block
 block discarded – undo
65 68
 
66 69
     /**
67 70
      * @param BaseUserInterface|null $user
71
+     * @return void
68 72
      */
69 73
     public function setUser(BaseUserInterface $user = null);
70 74
     
Please login to merge, or discard this patch.
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.