Completed
Push — scalar-types/taxonomy ( 4d330b )
by Kamil
23:21
created
src/Sylius/Component/Grid/Filtering/FiltersApplicatorInterface.php 2 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -24,6 +24,7 @@
 block discarded – undo
24 24
      * @param DataSourceInterface $dataSource
25 25
      * @param Grid $grid
26 26
      * @param Parameters $parameters
27
+     * @return void
27 28
      */
28 29
     public function apply(DataSourceInterface $dataSource, Grid $grid, Parameters $parameters);
29 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\Grid\Filtering;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Component/Grid/Sorting/SorterInterface.php 2 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -24,6 +24,7 @@
 block discarded – undo
24 24
      * @param DataSourceInterface $dataSource
25 25
      * @param Grid $grid
26 26
      * @param Parameters $parameters
27
+     * @return void
27 28
      */
28 29
     public function sort(DataSourceInterface $dataSource, Grid $grid, Parameters $parameters);
29 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\Grid\Sorting;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Component/Order/Model/AdjustableInterface.php 2 patches
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -27,11 +27,13 @@  discard block
 block discarded – undo
27 27
 
28 28
     /**
29 29
      * @param AdjustmentInterface $adjustment
30
+     * @return void
30 31
      */
31 32
     public function addAdjustment(AdjustmentInterface $adjustment);
32 33
 
33 34
     /**
34 35
      * @param AdjustmentInterface $adjustment
36
+     * @return void
35 37
      */
36 38
     public function removeAdjustment(AdjustmentInterface $adjustment);
37 39
 
@@ -44,11 +46,13 @@  discard block
 block discarded – undo
44 46
 
45 47
     /**
46 48
      * @param string $type
49
+     * @return void
47 50
      */
48 51
     public function removeAdjustments($type);
49 52
 
50 53
     /**
51 54
      * Recalculates adjustments total. Should be used after adjustment change.
55
+     * @return void
52 56
      */
53 57
     public function recalculateAdjustmentsTotal();
54 58
 }
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/OrderAwareInterface.php 2 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -23,6 +23,7 @@
 block discarded – undo
23 23
 
24 24
     /**
25 25
      * @param OrderInterface $order
26
+     * @return void
26 27
      */
27 28
     public function setOrder(OrderInterface $order = null);
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\Order\Model;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Component/Order/Model/OrderItemInterface.php 2 patches
Doc Comments   +7 added lines, -1 removed 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($unitPrice);
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();
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($immutable);
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);
85 89
 
86 90
     /**
87 91
      * @param OrderItemUnitInterface $itemUnit
92
+     * @return void
88 93
      */
89 94
     public function removeUnit(OrderItemUnitInterface $itemUnit);
90 95
 
@@ -97,13 +102,14 @@  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($type = null);
102 108
 
103 109
     /**
104 110
      * @param string|null $type
105 111
      *
106
-     * @return array
112
+     * @return integer
107 113
      */
108 114
     public function getAdjustmentsTotalRecursively($type = null);
109 115
 }
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/OrderItemQuantityModifierInterface.php 2 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -21,6 +21,7 @@
 block discarded – undo
21 21
     /**
22 22
      * @param OrderItemInterface $orderItem
23 23
      * @param int $targetQuantity
24
+     * @return void
24 25
      */
25 26
     public function modify(OrderItemInterface $orderItem, $targetQuantity);
26 27
 }
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/Product/Model/ProductTranslationInterface.php 2 patches
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -26,6 +26,7 @@  discard block
 block discarded – undo
26 26
 
27 27
     /**
28 28
      * @param string $name
29
+     * @return void
29 30
      */
30 31
     public function setName($name);
31 32
 
@@ -36,6 +37,7 @@  discard block
 block discarded – undo
36 37
 
37 38
     /**
38 39
      * @param string $description
40
+     * @return void
39 41
      */
40 42
     public function setDescription($description);
41 43
 
@@ -46,6 +48,7 @@  discard block
 block discarded – undo
46 48
 
47 49
     /**
48 50
      * @param string $metaKeywords
51
+     * @return void
49 52
      */
50 53
     public function setMetaKeywords($metaKeywords);
51 54
 
@@ -56,6 +59,7 @@  discard block
 block discarded – undo
56 59
 
57 60
     /**
58 61
      * @param string $metaDescription
62
+     * @return void
59 63
      */
60 64
     public function setMetaDescription($metaDescription);
61 65
 }
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\Product\Model;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Component/Review/Model/ReviewInterface.php 2 patches
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -26,6 +26,7 @@  discard block
 block discarded – undo
26 26
 
27 27
     /**
28 28
      * @param string $title
29
+     * @return void
29 30
      */
30 31
     public function setTitle($title);
31 32
 
@@ -36,6 +37,7 @@  discard block
 block discarded – undo
36 37
 
37 38
     /**
38 39
      * @param int $rating
40
+     * @return void
39 41
      */
40 42
     public function setRating($rating);
41 43
 
@@ -46,6 +48,7 @@  discard block
 block discarded – undo
46 48
 
47 49
     /**
48 50
      * @param string $comment
51
+     * @return void
49 52
      */
50 53
     public function setComment($comment);
51 54
 
@@ -56,6 +59,7 @@  discard block
 block discarded – undo
56 59
 
57 60
     /**
58 61
      * @param ReviewerInterface $author
62
+     * @return void
59 63
      */
60 64
     public function setAuthor(ReviewerInterface $author = null);
61 65
 
@@ -66,6 +70,7 @@  discard block
 block discarded – undo
66 70
 
67 71
     /**
68 72
      * @param string $status
73
+     * @return void
69 74
      */
70 75
     public function setStatus($status);
71 76
 
@@ -81,6 +86,7 @@  discard block
 block discarded – undo
81 86
 
82 87
     /**
83 88
      * @param ReviewableInterface $reviewSubject
89
+     * @return void
84 90
      */
85 91
     public function setReviewSubject(ReviewableInterface $reviewSubject);
86 92
 }
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\Review\Model;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Component/Shipping/Model/ShipmentInterface.php 2 patches
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -37,6 +37,7 @@  discard block
 block discarded – undo
37 37
 
38 38
     /**
39 39
      * @param string $state
40
+     * @return void
40 41
      */
41 42
     public function setState($state);
42 43
 
@@ -47,6 +48,7 @@  discard block
 block discarded – undo
47 48
 
48 49
     /**
49 50
      * @param ShippingMethodInterface $method
51
+     * @return void
50 52
      */
51 53
     public function setMethod(ShippingMethodInterface $method = null);
52 54
 
@@ -57,11 +59,13 @@  discard block
 block discarded – undo
57 59
 
58 60
     /**
59 61
      * @param ShipmentUnitInterface $unit
62
+     * @return void
60 63
      */
61 64
     public function addUnit(ShipmentUnitInterface $unit);
62 65
 
63 66
     /**
64 67
      * @param ShipmentUnitInterface $unit
68
+     * @return void
65 69
      */
66 70
     public function removeUnit(ShipmentUnitInterface $unit);
67 71
 
@@ -79,6 +83,7 @@  discard block
 block discarded – undo
79 83
 
80 84
     /**
81 85
      * @param string $tracking
86
+     * @return void
82 87
      */
83 88
     public function setTracking($tracking);
84 89
 
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\Shipping\Model;
15 15
 
Please login to merge, or discard this patch.