Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze authored and github-actions[bot] committed Jan 3, 2024
1 parent 9078ca8 commit e043328
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Analytics.php
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ public function get(
int $maxResults = 10,
array $orderBy = [],
int $offset = 0,
FilterExpression $dimensionFilter = null,
?FilterExpression $dimensionFilter = null,
bool $keepEmptyRows = false,
): Collection {
return $this->client->get(
Expand Down
2 changes: 1 addition & 1 deletion src/AnalyticsClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public function get(
int $maxResults = 10,
array $orderBy = [],
int $offset = 0,
FilterExpression $dimensionFilter = null,
?FilterExpression $dimensionFilter = null,
bool $keepEmptyRows = false,
): Collection {
$typeCaster = resolve(TypeCaster::class);
Expand Down
2 changes: 1 addition & 1 deletion src/AnalyticsServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function bootingPackage()
});
}

protected function guardAgainstInvalidConfiguration(array $analyticsConfig = null): void
protected function guardAgainstInvalidConfiguration(?array $analyticsConfig = null): void
{
if (empty($analyticsConfig['property_id'])) {
throw InvalidConfiguration::propertyIdNotSpecified();
Expand Down
2 changes: 1 addition & 1 deletion src/Period.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
use Carbon\Carbon;
use DateTimeInterface;
use Google\Analytics\Data\V1beta\DateRange;
use Spatie\Analytics\Exceptions\InvalidPeriod;
use Illuminate\Support\Traits\Macroable;
use Spatie\Analytics\Exceptions\InvalidPeriod;

class Period
{
Expand Down

0 comments on commit e043328

Please sign in to comment.