Completed
Push — scalar-types/theme ( 71f30c )
by Kamil
21:15
created
src/Sylius/Component/Inventory/Model/StockableInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -35,6 +35,7 @@  discard block
 block discarded – undo
35 35
 
36 36
     /**
37 37
      * @param int|null $onHold
38
+     * @return void
38 39
      */
39 40
     public function setOnHold(?int $onHold): void;
40 41
 
@@ -45,6 +46,7 @@  discard block
 block discarded – undo
45 46
 
46 47
     /**
47 48
      * @param int|null $onHand
49
+     * @return void
48 50
      */
49 51
     public function setOnHand(?int $onHand): void;
50 52
 
@@ -55,6 +57,7 @@  discard block
 block discarded – undo
55 57
 
56 58
     /**
57 59
      * @param bool $tracked
60
+     * @return void
58 61
      */
59 62
     public function setTracked(bool $tracked): void;
60 63
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Shipping/Model/ShipmentInterface.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -34,6 +34,7 @@  discard block
 block discarded – undo
34 34
 
35 35
     /**
36 36
      * @param string|null $state
37
+     * @return void
37 38
      */
38 39
     public function setState(?string $state): void;
39 40
 
@@ -44,6 +45,7 @@  discard block
 block discarded – undo
44 45
 
45 46
     /**
46 47
      * @param ShippingMethodInterface|null $method
48
+     * @return void
47 49
      */
48 50
     public function setMethod(?ShippingMethodInterface $method): void;
49 51
 
@@ -54,11 +56,13 @@  discard block
 block discarded – undo
54 56
 
55 57
     /**
56 58
      * @param ShipmentUnitInterface $unit
59
+     * @return void
57 60
      */
58 61
     public function addUnit(ShipmentUnitInterface $unit): void;
59 62
 
60 63
     /**
61 64
      * @param ShipmentUnitInterface $unit
65
+     * @return void
62 66
      */
63 67
     public function removeUnit(ShipmentUnitInterface $unit): void;
64 68
 
@@ -76,6 +80,7 @@  discard block
 block discarded – undo
76 80
 
77 81
     /**
78 82
      * @param string|null $tracking
83
+     * @return void
79 84
      */
80 85
     public function setTracking(?string $tracking): void;
81 86
 
Please login to merge, or discard this patch.
src/Sylius/Component/Shipping/Model/ShipmentUnitInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -29,6 +29,7 @@
 block discarded – undo
29 29
 
30 30
     /**
31 31
      * @param ShipmentInterface|null $shipment
32
+     * @return void
32 33
      */
33 34
     public function setShipment(?ShipmentInterface $shipment): void;
34 35
 
Please login to merge, or discard this patch.
src/Sylius/Component/Shipping/Model/ShippingCategoryInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -29,6 +29,7 @@  discard block
 block discarded – undo
29 29
 
30 30
     /**
31 31
      * @param string|null $name
32
+     * @return void
32 33
      */
33 34
     public function setName(?string $name): void;
34 35
 
@@ -39,6 +40,7 @@  discard block
 block discarded – undo
39 40
 
40 41
     /**
41 42
      * @param string|null $description
43
+     * @return void
42 44
      */
43 45
     public function setDescription(?string $description): void;
44 46
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Shipping/Model/ShippingMethodInterface.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -42,6 +42,7 @@  discard block
 block discarded – undo
42 42
 
43 43
     /**
44 44
      * @param int|null $position
45
+     * @return void
45 46
      */
46 47
     public function setPosition(?int $position): void;
47 48
 
@@ -52,6 +53,7 @@  discard block
 block discarded – undo
52 53
 
53 54
     /**
54 55
      * @param ShippingCategoryInterface|null $category
56
+     * @return void
55 57
      */
56 58
     public function setCategory(?ShippingCategoryInterface $category);
57 59
 
@@ -69,6 +71,7 @@  discard block
 block discarded – undo
69 71
 
70 72
     /**
71 73
      * @param int|null $categoryRequirement
74
+     * @return void
72 75
      */
73 76
     public function setCategoryRequirement(?int $categoryRequirement): void;
74 77
 
@@ -84,6 +87,7 @@  discard block
 block discarded – undo
84 87
 
85 88
     /**
86 89
      * @param string $calculator
90
+     * @return void
87 91
      */
88 92
     public function setCalculator(?string $calculator): void;
89 93
 
@@ -94,6 +98,7 @@  discard block
 block discarded – undo
94 98
 
95 99
     /**
96 100
      * @param array $configuration
101
+     * @return void
97 102
      */
98 103
     public function setConfiguration(array $configuration): void;
99 104
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Shipping/Model/ShippingMethodTranslationInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -29,6 +29,7 @@  discard block
 block discarded – undo
29 29
 
30 30
     /**
31 31
      * @param string|null $name
32
+     * @return void
32 33
      */
33 34
     public function setName(?string $name): void;
34 35
 
@@ -39,6 +40,7 @@  discard block
 block discarded – undo
39 40
 
40 41
     /**
41 42
      * @param string|null $description
43
+     * @return void
42 44
      */
43 45
     public function setDescription(?string $description): void;
44 46
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/ThemeBundle/Asset/Installer/OutputAwareInterface.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 OutputInterface $output
25
+     * @return void
25 26
      */
26 27
     public function setOutput(OutputInterface $output): void;
27 28
 }
Please login to merge, or discard this patch.
Bundle/ThemeBundle/Configuration/ConfigurationSourceFactoryInterface.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 ArrayNodeDefinition $node
28
+     * @return void
28 29
      */
29 30
     public function buildConfiguration(ArrayNodeDefinition $node): void;
30 31
 
Please login to merge, or discard this patch.
ThemeBundle/Configuration/Test/TestThemeConfigurationManagerInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -25,16 +25,19 @@
 block discarded – undo
25 25
 
26 26
     /**
27 27
      * @param array $configuration
28
+     * @return void
28 29
      */
29 30
     public function add(array $configuration): void;
30 31
 
31 32
     /**
32 33
      * @param string $themeName
34
+     * @return void
33 35
      */
34 36
     public function remove(string $themeName): void;
35 37
 
36 38
     /**
37 39
      * Clear currently used configurations storage.
40
+     * @return void
38 41
      */
39 42
     public function clear(): void;
40 43
 }
Please login to merge, or discard this patch.