Completed
Branch scrutinizer (a66750)
by Teye
06:36
created
Category
examples/Intervals.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
 
25 25
 
26 26
     $intervals = [];
27
-    array_walk($response, function ($value, $key) use (&$intervals) {
27
+    array_walk($response, function($value, $key) use (&$intervals) {
28 28
         $intervals[] = array_merge($value, ['interval' => $key]);
29 29
     });
30 30
 
Please login to merge, or discard this patch.
examples/GroupByQueryWithSubtotals.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
     // Build a groupBy query.
23 23
     $builder = $client->query('wikipedia')
24 24
         ->interval('2015-09-12 20:00:00', '2015-09-12 22:00:00')
25
-        ->select('__time', 'hour', function (ExtractionBuilder $extractionBuilder) {
25
+        ->select('__time', 'hour', function(ExtractionBuilder $extractionBuilder) {
26 26
             $extractionBuilder->timeFormat('yyyy-MM-dd HH:00:00');
27 27
         })
28 28
         ->select('namespace')
Please login to merge, or discard this patch.
examples/helpers/ConsoleTable.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
         foreach ($data as $i => $row) {
73 73
             $table .= '| ';
74 74
 
75
-            foreach( $this->columns as $column => $length ) {
75
+            foreach ($this->columns as $column => $length) {
76 76
                 $table .= str_pad((string)($row[$column] ?? ''), $length) . ' | ';
77 77
             }
78 78
             $table .= PHP_EOL;
Please login to merge, or discard this patch.
src/DruidServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
     {
56 56
         $this->setupConfig();
57 57
 
58
-        $this->app->singleton(DruidClient::class, function () {
58
+        $this->app->singleton(DruidClient::class, function() {
59 59
             $client = new DruidClient($this->app['config']['druid']);
60 60
             $client->setLogger($this->app['log']);
61 61
 
Please login to merge, or discard this patch.