Completed
Push — master ( 3d9ff2...44aaec )
by Kamil
34:14
created
src/Sylius/Bundle/GridBundle/Form/Registry/FormTypeRegistryInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -22,6 +22,7 @@
 block discarded – undo
22 22
      * @param string $identifier
23 23
      * @param string $typeIdentifier
24 24
      * @param string $formType
25
+     * @return void
25 26
      */
26 27
     public function add(string $identifier, string $typeIdentifier, string $formType): void;
27 28
 
Please login to merge, or discard this patch.
src/Sylius/Component/Grid/Data/DataSourceInterface.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,6 +26,7 @@  discard block
 block discarded – undo
26 26
     /**
27 27
      * @param mixed $expression
28 28
      * @param string $condition
29
+     * @return void
29 30
      */
30 31
     public function restrict($expression, string $condition = self::CONDITION_AND): void;
31 32
 
@@ -37,7 +38,7 @@  discard block
 block discarded – undo
37 38
     /**
38 39
      * @param Parameters $parameters
39 40
      *
40
-     * @return mixed
41
+     * @return \Pagerfanta\Pagerfanta
41 42
      */
42 43
     public function getData(Parameters $parameters);
43 44
 }
Please login to merge, or discard this patch.
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.