Completed
Pull Request — master (#250)
by Simonas
08:50 queued 06:43
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/Matrix/MatrixStatsAggregation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -96,12 +96,12 @@
 block discarded – undo
96 96
             $out['fields'] = $this->getField();
97 97
         }
98 98
 
99
-        if($this->getMode()) {
99
+        if ($this->getMode()) {
100 100
             $out['mode'] = $this->getMode();
101 101
         }
102 102
 
103 103
 
104
-        if($this->getMissing()) {
104
+        if ($this->getMissing()) {
105 105
             $out['missing'] = $this->getMissing();
106 106
         }
107 107
 
Please login to merge, or discard this patch.