Passed
Push — master ( 4b30a2...306b71 )
by
unknown
03:01 queued 22s
created
src/Metadata/MetadataBuilder.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -84,11 +84,11 @@  discard block
 block discarded – undo
84 84
      * @throws \Exception
85 85
      */
86 86
     public function timeBoundary(
87
-        string|DataSourceInterface $dataSource,
88
-        null|string|TimeBound $bound = TimeBound::BOTH,
87
+        string | DataSourceInterface $dataSource,
88
+        null | string | TimeBound $bound = TimeBound::BOTH,
89 89
         \Closure $filterBuilder = null,
90 90
         ContextInterface $context = null
91
-    ): DateTime|array {
91
+    ): DateTime | array {
92 92
 
93 93
         $query = [
94 94
             'queryType'  => 'timeBoundary',
@@ -300,8 +300,8 @@  discard block
 block discarded – undo
300 300
      */
301 301
     protected function getColumnsForInterval(
302 302
         string $dataSource,
303
-        DateTimeInterface|int|string $start,
304
-        DateTimeInterface|int|string $stop = null
303
+        DateTimeInterface | int | string $start,
304
+        DateTimeInterface | int | string $stop = null
305 305
     ): array {
306 306
         $response = $this->client->query($dataSource)
307 307
             ->interval($start, $stop)
@@ -342,8 +342,8 @@  discard block
 block discarded – undo
342 342
      */
343 343
     public function rowCount(
344 344
         string $dataSource,
345
-        DateTimeInterface|int|string $start,
346
-        DateTimeInterface|int|string $stop = null
345
+        DateTimeInterface | int | string $start,
346
+        DateTimeInterface | int | string $stop = null
347 347
     ): int {
348 348
         $response = $this->client->query($dataSource)
349 349
             ->interval($start, $stop)
Please login to merge, or discard this patch.