Completed
Push — remove-codeowners ( c2a3b4 )
by Kamil
35:29 queued 21:05
created
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/InventoryBundle/Twig/InventoryExtension.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,8 +39,8 @@
 block discarded – undo
39 39
     public function getFunctions(): array
40 40
     {
41 41
         return [
42
-             new \Twig_Function('sylius_inventory_is_available', [$this->helper, 'isStockAvailable']),
43
-             new \Twig_Function('sylius_inventory_is_sufficient', [$this->helper, 'isStockSufficient']),
42
+                new \Twig_Function('sylius_inventory_is_available', [$this->helper, 'isStockAvailable']),
43
+                new \Twig_Function('sylius_inventory_is_sufficient', [$this->helper, 'isStockSufficient']),
44 44
         ];
45 45
     }
46 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.
src/Sylius/Bundle/ThemeBundle/Loader/CircularDependencyCheckerInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -24,6 +24,7 @@
 block discarded – undo
24 24
      * @param ThemeInterface $theme
25 25
      *
26 26
      * @throws CircularDependencyFoundException
27
+     * @return void
27 28
      */
28 29
     public function check(ThemeInterface $theme): void;
29 30
 }
Please login to merge, or discard this patch.