Completed
Push — remove-codeowners ( c2a3b4 )
by Kamil
35:29 queued 21:05
created
src/Sylius/Component/Order/Model/OrderAwareInterface.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 OrderInterface|null $order
28
+     * @return void
28 29
      */
29 30
     public function setOrder(?OrderInterface $order): void;
30 31
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Order/Model/OrderItemInterface.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -33,6 +33,7 @@  discard block
 block discarded – undo
33 33
 
34 34
     /**
35 35
      * @param int $unitPrice
36
+     * @return void
36 37
      */
37 38
     public function setUnitPrice(int $unitPrice): void;
38 39
 
@@ -43,6 +44,7 @@  discard block
 block discarded – undo
43 44
 
44 45
     /**
45 46
      * Recalculate totals. Should be used after every unit change.
47
+     * @return void
46 48
      */
47 49
     public function recalculateUnitsTotal(): void;
48 50
 
@@ -63,6 +65,7 @@  discard block
 block discarded – undo
63 65
 
64 66
     /**
65 67
      * @param bool $immutable
68
+     * @return void
66 69
      */
67 70
     public function setImmutable(bool $immutable): void;
68 71
 
@@ -80,11 +83,13 @@  discard block
 block discarded – undo
80 83
 
81 84
     /**
82 85
      * @param OrderItemUnitInterface $itemUnit
86
+     * @return void
83 87
      */
84 88
     public function addUnit(OrderItemUnitInterface $itemUnit): void;
85 89
 
86 90
     /**
87 91
      * @param OrderItemUnitInterface $itemUnit
92
+     * @return void
88 93
      */
89 94
     public function removeUnit(OrderItemUnitInterface $itemUnit): void;
90 95
 
@@ -97,6 +102,7 @@  discard block
 block discarded – undo
97 102
 
98 103
     /**
99 104
      * @param string|null $type
105
+     * @return void
100 106
      */
101 107
     public function removeAdjustmentsRecursively(?string $type = null): void;
102 108
 
Please login to merge, or discard this patch.
src/Sylius/Component/Order/Model/OrderSequenceInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -25,5 +25,8 @@
 block discarded – undo
25 25
      */
26 26
     public function getIndex(): int;
27 27
 
28
+    /**
29
+     * @return void
30
+     */
28 31
     public function incrementIndex(): void;
29 32
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Order/Modifier/OrderItemQuantityModifierInterface.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 OrderItemInterface $orderItem
25 25
      * @param int $targetQuantity
26
+     * @return void
26 27
      */
27 28
     public function modify(OrderItemInterface $orderItem, int $targetQuantity): void;
28 29
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Order/Modifier/OrderModifierInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -24,12 +24,14 @@
 block discarded – undo
24 24
     /**
25 25
      * @param OrderInterface $cart
26 26
      * @param OrderItemInterface $cartItem
27
+     * @return void
27 28
      */
28 29
     public function addToOrder(OrderInterface $cart, OrderItemInterface $cartItem): void;
29 30
 
30 31
     /**
31 32
      * @param OrderInterface $cart
32 33
      * @param OrderItemInterface $item
34
+     * @return void
33 35
      */
34 36
     public function removeFromOrder(OrderInterface $cart, OrderItemInterface $item): void;
35 37
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Order/Processor/OrderProcessorInterface.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 process(OrderInterface $order): void;
27 28
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Order/StateResolver/StateResolverInterface.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 resolve(OrderInterface $order): void;
27 28
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/SymfonyPageInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -27,6 +27,7 @@
 block discarded – undo
27 27
      * @param array $requiredUrlParameters
28 28
      *
29 29
      * @throws UnexpectedPageException
30
+     * @return void
30 31
      */
31 32
     public function verifyRoute(array $requiredUrlParameters = []);
32 33
 }
Please login to merge, or discard this patch.
Promotion/Generator/PromotionCouponGeneratorInstructionInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -25,6 +25,7 @@  discard block
 block discarded – undo
25 25
 
26 26
     /**
27 27
      * @param int|null $amount
28
+     * @return void
28 29
      */
29 30
     public function setAmount(?int $amount): void;
30 31
 
@@ -35,6 +36,7 @@  discard block
 block discarded – undo
35 36
 
36 37
     /**
37 38
      * @param int|null $codeLength
39
+     * @return void
38 40
      */
39 41
     public function setCodeLength(?int $codeLength): void;
40 42
 
@@ -45,6 +47,7 @@  discard block
 block discarded – undo
45 47
 
46 48
     /**
47 49
      * @param \DateTimeInterface $expiresAt
50
+     * @return void
48 51
      */
49 52
     public function setExpiresAt(?\DateTimeInterface $expiresAt): void;
50 53
 
@@ -55,6 +58,7 @@  discard block
 block discarded – undo
55 58
 
56 59
     /**
57 60
      * @param int $usageLimit
61
+     * @return void
58 62
      */
59 63
     public function setUsageLimit(int $usageLimit): void;
60 64
 }
Please login to merge, or discard this patch.