Completed
Push — 1.1-csrf-token-user ( e22bcb...d4c2fb )
by Kamil
17:31
created
src/Sylius/Component/Taxonomy/Model/TaxonTranslationInterface.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/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/Promotion/Model/PromotionRuleInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -22,16 +22,19 @@
 block discarded – undo
22 22
 {
23 23
     /**
24 24
      * @param string|null $type
25
+     * @return void
25 26
      */
26 27
     public function setType(?string $type): void;
27 28
 
28 29
     /**
29 30
      * @param array $configuration
31
+     * @return void
30 32
      */
31 33
     public function setConfiguration(array $configuration): void;
32 34
 
33 35
     /**
34 36
      * @param PromotionInterface|null $promotion
37
+     * @return void
35 38
      */
36 39
     public function setPromotion(?PromotionInterface $promotion): void;
37 40
 }
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/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.