@@ -84,11 +84,11 @@ discard block |
||
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 |
||
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 |
||
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) |