Completed
Push — scalar-types/fixtures ( 9e7ef5 )
by Kamil
33:42 queued 09:21
created
src/Sylius/Component/Core/Model/TaxRateInterface.php 2 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -26,6 +26,7 @@
 block discarded – undo
26 26
 
27 27
     /**
28 28
      * @param ZoneInterface|null $zone
29
+     * @return void
29 30
      */
30 31
     public function setZone(ZoneInterface $zone = null);
31 32
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Component\Core\Model;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Component/Core/TokenAssigner/OrderTokenAssignerInterface.php 2 patches
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 assignTokenValue(OrderInterface $order);
25 26
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Component\Core\TokenAssigner;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Updater/UnpaidOrdersStateUpdaterInterface.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -16,5 +16,8 @@
 block discarded – undo
16 16
  */
17 17
 interface UnpaidOrdersStateUpdaterInterface
18 18
 {
19
+    /**
20
+     * @return void
21
+     */
19 22
     public function cancel();
20 23
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Component\Core\Updater;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Component/Grid/FieldTypes/FieldTypeInterface.php 2 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -35,6 +35,7 @@
 block discarded – undo
35 35
      * Configure options for this field type.
36 36
      *
37 37
      * @param OptionsResolver $resolver
38
+     * @return void
38 39
      */
39 40
     public function configureOptions(OptionsResolver $resolver);
40 41
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Component\Grid\FieldTypes;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Component/Grid/Filtering/FilterInterface.php 2 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -23,6 +23,7 @@
 block discarded – undo
23 23
      * @param string $name
24 24
      * @param mixed $data
25 25
      * @param array $options
26
+     * @return void
26 27
      */
27 28
     public function apply(DataSourceInterface $dataSource, $name, $data, array $options);
28 29
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Component\Grid\Filtering;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Component/Order/Model/AdjustmentInterface.php 2 patches
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.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Component\Order\Model;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Component/Order/Model/OrderSequenceInterface.php 2 patches
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.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Component\Order\Model;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Component/Order/Modifier/OrderModifierInterface.php 2 patches
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.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Component\Order\Modifier;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Component/Order/Processor/OrderProcessorInterface.php 2 patches
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.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Component\Order\Processor;
15 15
 
Please login to merge, or discard this patch.