Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
# Conflicts:
#	src/Storage/DatabaseStorage.php
  • Loading branch information
rabrowne85 committed Jan 26, 2024
2 parents 9f24646 + fe976b0 commit c303dd1
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 1 deletion.
2 changes: 2 additions & 0 deletions config/datum.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

return [

/*
Expand Down
2 changes: 2 additions & 0 deletions database/factories/ModelFactory.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Vulpecula\Datum\Database\Factories;

use Illuminate\Database\Eloquent\Factories\Factory;
Expand Down
2 changes: 2 additions & 0 deletions src/Commands/DatumCommand.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Vulpecula\Datum\Commands;

use Illuminate\Console\Command;
Expand Down
2 changes: 2 additions & 0 deletions src/Concerns/ConfiguresAfterResolving.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Vulpecula\Datum\Concerns;

use Closure;
Expand Down
2 changes: 2 additions & 0 deletions src/Contracts/Ingest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Vulpecula\Datum\Contracts;

use Illuminate\Support\Collection;
Expand Down
2 changes: 1 addition & 1 deletion src/Datum.php
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public function __construct(protected Application $app)
public function register(array $recorders): self
{
$recorders = collect($recorders)->map(function ($recorder, $key) {
if ($recorder === false || (is_array($recorder) && ! ($recorder['enabled'] ?? true))) {
if (false === $recorder || (is_array($recorder) && ! ($recorder['enabled'] ?? true))) {
return;
}

Expand Down
2 changes: 2 additions & 0 deletions src/DatumServiceProvider.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Vulpecula\Datum;

use Illuminate\Auth\Events\Logout;
Expand Down
2 changes: 2 additions & 0 deletions src/Events/ExceptionReported.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Vulpecula\Datum\Events;

use Throwable;
Expand Down
2 changes: 2 additions & 0 deletions src/Facades/Datum.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Vulpecula\Datum\Facades;

use Illuminate\Support\Facades\Facade;
Expand Down
2 changes: 2 additions & 0 deletions workbench/app/Providers/WorkbenchServiceProvider.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Workbench\App\Providers;

use Illuminate\Support\Facades\Route;
Expand Down

0 comments on commit c303dd1

Please sign in to comment.