Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze authored and actions-user committed Mar 26, 2021
1 parent 62b1d7e commit 22f8b29
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Analytics.php
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ protected function summarizeTopBrowsers(Collection $topBrowsers, int $maxResults
*
* @return array|null
*/
public function performQuery(Period $period, string $metrics, array $others = []): array|null
public function performQuery(Period $period, string $metrics, array $others = []): array | null
{
return $this->client->performQuery(
$this->viewId,
Expand Down
2 changes: 1 addition & 1 deletion src/AnalyticsClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public function setCacheLifeTimeInMinutes(int $cacheLifeTimeInMinutes): self
*
* @return array|null
*/
public function performQuery(string $viewId, DateTimeInterface $startDate, DateTimeInterface $endDate, string $metrics, array $others = []): array|null
public function performQuery(string $viewId, DateTimeInterface $startDate, DateTimeInterface $endDate, string $metrics, array $others = []): array | null
{
$cacheName = $this->determineCacheName(func_get_args());

Expand Down
2 changes: 1 addition & 1 deletion src/AnalyticsServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
namespace Spatie\Analytics;

use Spatie\Analytics\Exceptions\InvalidConfiguration;
use Spatie\LaravelPackageTools\PackageServiceProvider;
use Spatie\LaravelPackageTools\Package;
use Spatie\LaravelPackageTools\PackageServiceProvider;

class AnalyticsServiceProvider extends PackageServiceProvider
{
Expand Down

0 comments on commit 22f8b29

Please sign in to comment.