Completed
Push — symfony-3.3 ( e8b928...951e26 )
by Kamil
24:54 queued 03:04
created
src/Sylius/Component/Order/Model/AdjustmentInterface.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -26,6 +26,7 @@  discard block
 block discarded – undo
26 26
 
27 27
     /**
28 28
      * @param AdjustableInterface|null $adjustable
29
+     * @return void
29 30
      */
30 31
     public function setAdjustable(AdjustableInterface $adjustable = null);
31 32
 
@@ -36,6 +37,7 @@  discard block
 block discarded – undo
36 37
 
37 38
     /**
38 39
      * @param string $type
40
+     * @return void
39 41
      */
40 42
     public function setType($type);
41 43
 
@@ -46,6 +48,7 @@  discard block
 block discarded – undo
46 48
 
47 49
     /**
48 50
      * @param string $label
51
+     * @return void
49 52
      */
50 53
     public function setLabel($label);
51 54
 
@@ -56,6 +59,7 @@  discard block
 block discarded – undo
56 59
 
57 60
     /**
58 61
      * @param int $amount
62
+     * @return void
59 63
      */
60 64
     public function setAmount($amount);
61 65
 
@@ -66,6 +70,7 @@  discard block
 block discarded – undo
66 70
 
67 71
     /**
68 72
      * @param bool $neutral
73
+     * @return void
69 74
      */
70 75
     public function setNeutral($neutral);
71 76
 
@@ -74,8 +79,14 @@  discard block
 block discarded – undo
74 79
      */
75 80
     public function isLocked();
76 81
 
82
+    /**
83
+     * @return void
84
+     */
77 85
     public function lock();
78 86
 
87
+    /**
88
+     * @return void
89
+     */
79 90
     public function unlock();
80 91
 
81 92
     /**
@@ -99,6 +110,7 @@  discard block
 block discarded – undo
99 110
 
100 111
     /**
101 112
      * @param string $originCode
113
+     * @return void
102 114
      */
103 115
     public function setOriginCode($originCode);
104 116
 }
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
@@ -23,5 +23,8 @@
 block discarded – undo
23 23
      */
24 24
     public function getIndex();
25 25
 
26
+    /**
27
+     * @return void
28
+     */
26 29
     public function incrementIndex();
27 30
 }
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
@@ -22,12 +22,14 @@
 block discarded – undo
22 22
     /**
23 23
      * @param OrderInterface $cart
24 24
      * @param OrderItemInterface $cartItem
25
+     * @return void
25 26
      */
26 27
     public function addToOrder(OrderInterface $cart, OrderItemInterface $cartItem);
27 28
 
28 29
     /**
29 30
      * @param OrderInterface $cart
30 31
      * @param OrderItemInterface $item
32
+     * @return void
31 33
      */
32 34
     public function removeFromOrder(OrderInterface $cart, OrderItemInterface $item);
33 35
 }
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
@@ -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 process(OrderInterface $order);
25 26
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Order/Remover/ExpiredCartsRemoverInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -16,5 +16,8 @@
 block discarded – undo
16 16
  */
17 17
 interface ExpiredCartsRemoverInterface
18 18
 {
19
+    /**
20
+     * @return void
21
+     */
19 22
     public function remove();
20 23
 }
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
@@ -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 resolve(OrderInterface $order);
25 26
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Payment/Model/PaymentMethodTranslationInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -22,6 +22,7 @@  discard block
 block discarded – undo
22 22
 
23 23
     /**
24 24
      * @param string $name
25
+     * @return void
25 26
      */
26 27
     public function setName($name);
27 28
 
@@ -32,6 +33,7 @@  discard block
 block discarded – undo
32 33
 
33 34
     /**
34 35
      * @param string $description
36
+     * @return void
35 37
      */
36 38
     public function setDescription($description);
37 39
 
@@ -42,6 +44,7 @@  discard block
 block discarded – undo
42 44
 
43 45
     /**
44 46
      * @param string $instructions
47
+     * @return void
45 48
      */
46 49
     public function setInstructions($instructions);
47 50
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Product/Checker/ProductVariantsParityChecker.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,6 @@
 block discarded – undo
13 13
 
14 14
 use Sylius\Component\Product\Model\ProductInterface;
15 15
 use Sylius\Component\Product\Model\ProductVariantInterface;
16
-use Webmozart\Assert\Assert;
17 16
 
18 17
 /**
19 18
  * @author Łukasz Chruściel <[email protected]>
Please login to merge, or discard this patch.
src/Sylius/Component/Product/Generator/ProductVariantGeneratorInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -22,6 +22,7 @@
 block discarded – undo
22 22
      * @param ProductInterface $product
23 23
      *
24 24
      * @throws \InvalidArgumentException
25
+     * @return void
25 26
      */
26 27
     public function generate(ProductInterface $product);
27 28
 }
Please login to merge, or discard this patch.