Skip to content

Commit 3edb42d

Browse files
committed
Style changes
1 parent 9fd4420 commit 3edb42d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Database/DatabaseEloquentModelTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -720,7 +720,7 @@ public function testWithWhereHasWithSpecificColumns()
720720
public function testWithWhereHasWorksInNestedQuery()
721721
{
722722
$model = new EloquentModelWithWhereHasStub;
723-
$instance = $model->newInstance()->newQuery()->with(fn($q) => $q->withWhereHas('foo:diaa,fares'));
723+
$instance = $model->newInstance()->newQuery()->with(fn ($q) => $q->withWhereHas('foo:diaa,fares'));
724724
$builder = m::mock(Builder::class);
725725
$builder->shouldReceive('select')->once()->with(['diaa', 'fares']);
726726
$this->assertNotNull($instance->getEagerLoads()['foo']);

0 commit comments

Comments
 (0)