Skip to content

Commit

Permalink
Fix code styling
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell authored and github-actions[bot] committed Feb 19, 2024
1 parent ebd733a commit e6d53d9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion tests/Feature/Storage/DatabaseStorageTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
use Carbon\CarbonInterval;
use Illuminate\Database\Events\QueryExecuted;
use Illuminate\Support\Carbon;
use Illuminate\Support\Facades\Config;
use Illuminate\Support\Facades\DB;
use Laravel\Pulse\Facades\Pulse;

Expand Down
2 changes: 1 addition & 1 deletion tests/StorageFake.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public function store(Collection $items): void
*/
public function trim(): void
{
$this->stored = $this->stored->reject(fn($record) => $record->timestamp <= now()->subWeek()->timestamp);
$this->stored = $this->stored->reject(fn ($record) => $record->timestamp <= now()->subWeek()->timestamp);
}

/**
Expand Down

0 comments on commit e6d53d9

Please sign in to comment.