Skip to content

Commit b2142b0

Browse files
committed
✅ style CI
1 parent c40158d commit b2142b0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Rules/SearchRules.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ protected function aggregatesRules(\Lomkit\Rest\Http\Resource $resource, string
299299
->resource($resource),
300300
AggregateFilterable::make()
301301
->resource($resource),
302-
]
302+
],
303303
];
304304
}
305305
}

tests/Support/Database/Factories/BelongsToManyRelationFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class BelongsToManyRelationFactory extends Factory
2222
public function definition()
2323
{
2424
return [
25-
'number' => fake()->numberBetween(-5000, 5000),
25+
'number' => fake()->numberBetween(-5000, 5000),
2626
'other_number' => fake()->numberBetween(-5000, 5000),
2727
];
2828
}

tests/Support/Rest/Resources/BelongsToManyResource.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public function fields(RestRequest $request): array
2626
return [
2727
'id',
2828
'number',
29-
'other_number'
29+
'other_number',
3030
];
3131
}
3232
}

0 commit comments

Comments
 (0)