Skip to content

Commit 377a870

Browse files
Merge pull request #31 from Laragear/analysis-kYL6RG
Apply fixes from StyleCI [ci skip] [skip ci]
2 parents 34edf95 + f82a3e8 commit 377a870

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/CacheAwareConnectionProxyTest.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
use LogicException;
1818
use Mockery;
1919
use Orchestra\Testbench\Attributes\WithMigration;
20+
2021
use function floor;
2122
use function max;
2223
use function now;
@@ -37,7 +38,7 @@ protected function setUp(): void
3738
'email_verified_at' => today(),
3839
])->toArray());
3940

40-
$this->app->make('db')->table('posts')->insert(Collection::times(6, fn($i) => [
41+
$this->app->make('db')->table('posts')->insert(Collection::times(6, fn ($i) => [
4142
'title' => $this->faker->text(20),
4243
'user_id' => (int) floor(max(1, $i / 2)),
4344
])->toArray());

0 commit comments

Comments
 (0)