Skip to content

Commit c224653

Browse files
freekmurzeactions-user
authored andcommitted
Fix styling
1 parent 3bcd21d commit c224653

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

tests/RelationFilterTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public function setUp(): void
1616
{
1717
parent::setUp();
1818

19-
$this->models =TestModel::factory()->count(5)->create();
19+
$this->models = TestModel::factory()->count(5)->create();
2020

2121
$this->models->each(function (TestModel $model, $index) {
2222
$model

tests/SortTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ public function it_can_allow_multiple_sort_parameters_as_an_array()
309309
/** @test */
310310
public function it_can_sort_by_multiple_columns()
311311
{
312-
$this->models =TestModel::factory()->count(3)->create(['name' => 'foo']);
312+
$this->models = TestModel::factory()->count(3)->create(['name' => 'foo']);
313313

314314
$sortedModels = $this
315315
->createQueryFromSortRequest('name,-id')

tests/SortsCallbackTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public function setUp(): void
2323

2424
DB::enableQueryLog();
2525

26-
$this->models =TestModel::factory()->count(5)->create();
26+
$this->models = TestModel::factory()->count(5)->create();
2727
}
2828

2929
/** @test */

tests/TestCase.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ protected function setUp(): void
2525
Factory::guessFactoryNamesUsing(
2626
fn (string $modelName) => 'Spatie\\QueryBuilder\\Database\\Factories\\'.class_basename($modelName).'Factory'
2727
);
28-
2928
}
3029

3130
protected function setUpDatabase(Application $app)
@@ -89,7 +88,7 @@ protected function getPackageProviders($app)
8988
{
9089
return [
9190
RayServiceProvider::class,
92-
QueryBuilderServiceProvider::class
91+
QueryBuilderServiceProvider::class,
9392
];
9493
}
9594

0 commit comments

Comments
 (0)