Skip to content

Commit dda653a

Browse files
committed
fix php cs
1 parent 92d4736 commit dda653a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tests/Laravel/ModelAssertionsTest.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,9 @@
22

33
namespace Astrotomic\PhpunitAssertions\Tests\Laravel;
44

5-
use Astrotomic\PhpunitAssertions\Laravel\CollectionAssertions;
65
use Astrotomic\PhpunitAssertions\Laravel\ModelAssertions;
76
use Illuminate\Database\Eloquent\Model;
87
use Illuminate\Database\Schema\Blueprint;
9-
use Illuminate\Support\Collection;
108
use Illuminate\Support\Facades\Schema;
119

1210
final class ModelAssertionsTest extends TestCase
@@ -53,6 +51,6 @@ public function it_can_validate_same(): void
5351
$model->title = self::randomString();
5452
$model->save();
5553

56-
ModelAssertions::assertSame($model,$model->query()->first());
54+
ModelAssertions::assertSame($model, $model->query()->first());
5755
}
5856
}

0 commit comments

Comments
 (0)