Completed
Push — 1.2-symfony4-packages ( 39ce77...14945a )
by Kamil
18:11
created
src/Sylius/Component/Grid/Data/ExpressionBuilderInterface.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
 
68 68
     /**
69 69
      * @param string $field
70
-     * @param mixed $value
70
+     * @param string $value
71 71
      *
72 72
      * @return mixed
73 73
      */
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
 
84 84
     /**
85 85
      * @param string $field
86
-     * @param mixed $value
86
+     * @param string $value
87 87
      *
88 88
      * @return mixed
89 89
      */
Please login to merge, or discard this patch.
src/Sylius/Component/Grid/Definition/Filter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
     }
107 107
 
108 108
     /**
109
-     * @return mixed
109
+     * @return string
110 110
      */
111 111
     public function getLabel()
112 112
     {
Please login to merge, or discard this patch.
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.