@@ -56,7 +56,7 @@ |
||
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 | } |
@@ -22,7 +22,7 @@ |
||
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. |
@@ -149,7 +149,7 @@ |
||
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( |