Completed
Push — _tmp_a175871969cd1af79ddf7d72b... ( a17587 )
by Kamil
170:51 queued 166:58
created
Data/ExpressionBuilderInterface.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -33,10 +33,16 @@
 block discarded – undo
33 33
 
34 34
     public function lessThan(string $field, $value);
35 35
 
36
+    /**
37
+     * @param string $value
38
+     */
36 39
     public function lessThanOrEqual(string $field, $value);
37 40
 
38 41
     public function greaterThan(string $field, $value);
39 42
 
43
+    /**
44
+     * @param string $value
45
+     */
40 46
     public function greaterThanOrEqual(string $field, $value);
41 47
 
42 48
     public function in(string $field, array $values);
Please login to merge, or discard this patch.
FieldTypes/FieldTypeInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -26,6 +26,7 @@
 block discarded – undo
26 26
 
27 27
     /**
28 28
      * Configure options for this field type.
29
+     * @return void
29 30
      */
30 31
     public function configureOptions(OptionsResolver $resolver): void;
31 32
 }
Please login to merge, or discard this patch.
Filter/DateFilter.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -52,6 +52,9 @@
 block discarded – undo
52 52
         }
53 53
     }
54 54
 
55
+    /**
56
+     * @param string|boolean $default
57
+     */
55 58
     private function getOption(array $options, string $name, $default)
56 59
     {
57 60
         return $options[$name] ?? $default;
Please login to merge, or discard this patch.
Filtering/FilterInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -17,5 +17,8 @@
 block discarded – undo
17 17
 
18 18
 interface FilterInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function apply(DataSourceInterface $dataSource, string $name, $data, array $options): void;
21 24
 }
Please login to merge, or discard this patch.
Filtering/FiltersApplicatorInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -19,5 +19,8 @@
 block discarded – undo
19 19
 
20 20
 interface FiltersApplicatorInterface
21 21
 {
22
+    /**
23
+     * @return void
24
+     */
22 25
     public function apply(DataSourceInterface $dataSource, Grid $grid, Parameters $parameters): void;
23 26
 }
Please login to merge, or discard this patch.
Sorting/SorterInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -19,5 +19,8 @@
 block discarded – undo
19 19
 
20 20
 interface SorterInterface
21 21
 {
22
+    /**
23
+     * @return void
24
+     */
22 25
     public function sort(DataSourceInterface $dataSource, Grid $grid, Parameters $parameters): void;
23 26
 }
Please login to merge, or discard this patch.