Completed
Push — scalar-types/theme ( 71f30c...f8c0a1 )
by Kamil
40:27 queued 18:48
created
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/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.
src/Sylius/Component/Product/Model/ProductAssociationInterface.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -27,6 +27,7 @@  discard block
 block discarded – undo
27 27
 
28 28
     /**
29 29
      * @param ProductAssociationTypeInterface $type
30
+     * @return void
30 31
      */
31 32
     public function setType(ProductAssociationTypeInterface $type);
32 33
 
@@ -37,6 +38,7 @@  discard block
 block discarded – undo
37 38
 
38 39
     /**
39 40
      * @param ProductInterface|null $owner
41
+     * @return void
40 42
      */
41 43
     public function setOwner(ProductInterface $owner = null);
42 44
 
@@ -47,11 +49,13 @@  discard block
 block discarded – undo
47 49
 
48 50
     /**
49 51
      * @param ProductInterface $product
52
+     * @return void
50 53
      */
51 54
     public function addAssociatedProduct(ProductInterface $product);
52 55
 
53 56
     /**
54 57
      * @param ProductInterface $product
58
+     * @return void
55 59
      */
56 60
     public function removeAssociatedProduct(ProductInterface $product);
57 61
 
@@ -62,5 +66,8 @@  discard block
 block discarded – undo
62 66
      */
63 67
     public function hasAssociatedProduct(ProductInterface $product);
64 68
 
69
+    /**
70
+     * @return void
71
+     */
65 72
     public function clearAssociatedProducts();
66 73
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Product/Model/ProductAssociationTypeInterface.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 string $name
31
+     * @return void
31 32
      */
32 33
     public function setName($name);
33 34
 }
Please login to merge, or discard this patch.
Component/Product/Model/ProductAssociationTypeTranslationInterface.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 string $name
31
+     * @return void
31 32
      */
32 33
     public function setName($name);
33 34
 }
Please login to merge, or discard this patch.