Skip to content

Commit e6d53d9

Browse files
taylorotwellgithub-actions[bot]
authored andcommitted
Fix code styling
1 parent ebd733a commit e6d53d9

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

tests/Feature/Storage/DatabaseStorageTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
use Carbon\CarbonInterval;
44
use Illuminate\Database\Events\QueryExecuted;
55
use Illuminate\Support\Carbon;
6-
use Illuminate\Support\Facades\Config;
76
use Illuminate\Support\Facades\DB;
87
use Laravel\Pulse\Facades\Pulse;
98

tests/StorageFake.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public function store(Collection $items): void
3131
*/
3232
public function trim(): void
3333
{
34-
$this->stored = $this->stored->reject(fn($record) => $record->timestamp <= now()->subWeek()->timestamp);
34+
$this->stored = $this->stored->reject(fn ($record) => $record->timestamp <= now()->subWeek()->timestamp);
3535
}
3636

3737
/**

0 commit comments

Comments
 (0)