We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebd733a commit e6d53d9Copy full SHA for e6d53d9
tests/Feature/Storage/DatabaseStorageTest.php
@@ -3,7 +3,6 @@
3
use Carbon\CarbonInterval;
4
use Illuminate\Database\Events\QueryExecuted;
5
use Illuminate\Support\Carbon;
6
-use Illuminate\Support\Facades\Config;
7
use Illuminate\Support\Facades\DB;
8
use Laravel\Pulse\Facades\Pulse;
9
tests/StorageFake.php
@@ -31,7 +31,7 @@ public function store(Collection $items): void
31
*/
32
public function trim(): void
33
{
34
- $this->stored = $this->stored->reject(fn($record) => $record->timestamp <= now()->subWeek()->timestamp);
+ $this->stored = $this->stored->reject(fn ($record) => $record->timestamp <= now()->subWeek()->timestamp);
35
}
36
37
/**
0 commit comments