Completed
Pull Request — master (#256)
by
unknown
02:08
created
src/Aggregation/Metric/PercentilesAggregation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@
 block discarded – undo
103 103
                 'field' => $this->getField(),
104 104
                 'script' => $this->getScript(),
105 105
             ],
106
-            function ($val) {
106
+            function($val) {
107 107
                 return ($val || is_numeric($val));
108 108
             }
109 109
         );
Please login to merge, or discard this patch.
src/Aggregation/Metric/ExtendedStatsAggregation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
                 'script' => $this->getScript(),
80 80
                 'sigma' => $this->getSigma(),
81 81
             ],
82
-            function ($val) {
82
+            function($val) {
83 83
                 return ($val || is_numeric($val));
84 84
             }
85 85
         );
Please login to merge, or discard this patch.
src/Aggregation/Bucketing/DateRangeAggregation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@
 block discarded – undo
86 86
                 'from' => $from,
87 87
                 'to' => $to
88 88
             ],
89
-            function ($v) {
89
+            function($v) {
90 90
                 return !is_null($v);
91 91
             }
92 92
         );
Please login to merge, or discard this patch.
src/Aggregation/Bucketing/GeoDistanceAggregation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -133,7 +133,7 @@
 block discarded – undo
133 133
                 'from' => $from,
134 134
                 'to' => $to,
135 135
             ],
136
-            function ($v) {
136
+            function($v) {
137 137
                 return !is_null($v);
138 138
             }
139 139
         );
Please login to merge, or discard this patch.
src/Aggregation/Bucketing/Ipv4RangeAggregation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
                 'from' => $from,
67 67
                 'to' => $to,
68 68
             ],
69
-            function ($v) {
69
+            function($v) {
70 70
                 return !is_null($v);
71 71
             }
72 72
         );
Please login to merge, or discard this patch.
src/Aggregation/Bucketing/RangeAggregation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@
 block discarded – undo
85 85
                 'from' => $from,
86 86
                 'to' => $to,
87 87
             ],
88
-            function ($v) {
88
+            function($v) {
89 89
                 return !is_null($v);
90 90
             }
91 91
         );
Please login to merge, or discard this patch.