Completed
Push — 1.1-csrf-token-user ( e22bcb...d4c2fb )
by Kamil
17:31
created
src/Sylius/Component/Grid/Definition/Grid.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -132,7 +132,7 @@
 block discarded – undo
132 132
     }
133 133
 
134 134
     /**
135
-     * @return array
135
+     * @return integer[]
136 136
      */
137 137
     public function getLimits(): array
138 138
     {
Please login to merge, or discard this patch.
src/Sylius/Component/Grid/FieldTypes/FieldTypeInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -37,6 +37,7 @@
 block discarded – undo
37 37
      * Configure options for this field type.
38 38
      *
39 39
      * @param OptionsResolver $resolver
40
+     * @return void
40 41
      */
41 42
     public function configureOptions(OptionsResolver $resolver): void;
42 43
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Grid/Filtering/FilterInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -25,6 +25,7 @@
 block discarded – undo
25 25
      * @param string $name
26 26
      * @param mixed $data
27 27
      * @param array $options
28
+     * @return void
28 29
      */
29 30
     public function apply(DataSourceInterface $dataSource, string $name, $data, array $options): void;
30 31
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Grid/Filtering/FiltersApplicatorInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -26,6 +26,7 @@
 block discarded – undo
26 26
      * @param DataSourceInterface $dataSource
27 27
      * @param Grid $grid
28 28
      * @param Parameters $parameters
29
+     * @return void
29 30
      */
30 31
     public function apply(DataSourceInterface $dataSource, Grid $grid, Parameters $parameters): void;
31 32
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Grid/Sorting/SorterInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -26,6 +26,7 @@
 block discarded – undo
26 26
      * @param DataSourceInterface $dataSource
27 27
      * @param Grid $grid
28 28
      * @param Parameters $parameters
29
+     * @return void
29 30
      */
30 31
     public function sort(DataSourceInterface $dataSource, Grid $grid, Parameters $parameters): void;
31 32
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Product/Generator/ProductVariantGeneratorInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -24,6 +24,7 @@
 block discarded – undo
24 24
      * @param ProductInterface $product
25 25
      *
26 26
      * @throws \InvalidArgumentException
27
+     * @return void
27 28
      */
28 29
     public function generate(ProductInterface $product): void;
29 30
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Product/Model/ProductAssociationInterface.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -29,6 +29,7 @@  discard block
 block discarded – undo
29 29
 
30 30
     /**
31 31
      * @param ProductAssociationTypeInterface|null $type
32
+     * @return void
32 33
      */
33 34
     public function setType(?ProductAssociationTypeInterface $type): void;
34 35
 
@@ -39,6 +40,7 @@  discard block
 block discarded – undo
39 40
 
40 41
     /**
41 42
      * @param ProductInterface|null $owner
43
+     * @return void
42 44
      */
43 45
     public function setOwner(?ProductInterface $owner): void;
44 46
 
@@ -49,11 +51,13 @@  discard block
 block discarded – undo
49 51
 
50 52
     /**
51 53
      * @param ProductInterface $product
54
+     * @return void
52 55
      */
53 56
     public function addAssociatedProduct(ProductInterface $product): void;
54 57
 
55 58
     /**
56 59
      * @param ProductInterface $product
60
+     * @return void
57 61
      */
58 62
     public function removeAssociatedProduct(ProductInterface $product): void;
59 63
 
@@ -64,5 +68,8 @@  discard block
 block discarded – undo
64 68
      */
65 69
     public function hasAssociatedProduct(ProductInterface $product): bool;
66 70
 
71
+    /**
72
+     * @return void
73
+     */
67 74
     public function clearAssociatedProducts(): void;
68 75
 }
Please login to merge, or discard this patch.
Component/Product/Model/ProductAssociationTypeTranslationInterface.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 string|null $name
32
+     * @return void
32 33
      */
33 34
     public function setName(?string $name): void;
34 35
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Product/Model/ProductAttributeValueInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -27,6 +27,7 @@
 block discarded – undo
27 27
 
28 28
     /**
29 29
      * @param ProductInterface|null $product
30
+     * @return void
30 31
      */
31 32
     public function setProduct(?ProductInterface $product): void;
32 33
 }
Please login to merge, or discard this patch.