Passed
Pull Request — master (#38)
by Teye
05:43
created
examples/Index.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
 } catch (Exception $exception) {
57 57
     echo "Something went wrong during retrieving druid data\n";
58 58
     echo $exception->getMessage() . "\n";
59
-    echo $exception->getTraceAsString(). "\n";
59
+    echo $exception->getTraceAsString() . "\n";
60 60
     if ($exception instanceof \GuzzleHttp\Exception\ClientException) {
61 61
         echo $exception->getResponse()->getBody() . "\n";
62 62
     }
Please login to merge, or discard this patch.
examples/Spatial.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
         ->select('Mountain')
23 23
         ->select('Country')
24 24
         ->select('Location')
25
-        ->whereSpatialRadius('Location', [28,84], 0.8)
25
+        ->whereSpatialRadius('Location', [28, 84], 0.8)
26 26
     ;
27 27
 
28 28
     // Execute the query.
Please login to merge, or discard this patch.
src/DruidClient.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -149,7 +149,7 @@
 block discarded – undo
149 149
         /** @var array<string,array<mixed>|int|string> $payload */
150 150
         $payload = $task->toArray();
151 151
 
152
-        $this->log('Executing druid task: '. var_export($payload, true));
152
+        $this->log('Executing druid task: ' . var_export($payload, true));
153 153
 
154 154
         /** @var string[] $result */
155 155
         $result = $this->executeRawRequest(
Please login to merge, or discard this patch.