Skip to content

Commit f182b3f

Browse files
laravel-ide-helpergithub-actions[bot]
authored andcommitted
composer fix-style
1 parent 1dd3c30 commit f182b3f

File tree

1 file changed

+4
-2
lines changed
  • tests/Console/ModelsCommand/QueryScopes/Models

1 file changed

+4
-2
lines changed

tests/Console/ModelsCommand/QueryScopes/Models/Comment.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ class Comment extends Model
1616
* @return void
1717
*/
1818
#[Scope]
19-
protected function local(Builder $query): void {
19+
protected function local(Builder $query): void
20+
{
2021
$query->where('ip_address', '127.0.0.1');
2122
}
2223

@@ -25,7 +26,8 @@ protected function local(Builder $query): void {
2526
* @param Builder $query
2627
* @return void
2728
*/
28-
protected function scopeSystem(Builder $query): void {
29+
protected function scopeSystem(Builder $query): void
30+
{
2931
$query->where('system', true);
3032
}
3133
}

0 commit comments

Comments
 (0)