Skip to content

Commit 941f0a0

Browse files
committed
Apply fixes from StyleCI
1 parent 21f9428 commit 941f0a0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/Feature/Controllers/SearchScoutOperationsTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ public function test_getting_a_list_of_resources_with_not_allowed_filter_nested(
139139
['field' => 'allowed_scout_field', 'value' => 2],
140140
],
141141
],
142-
]
142+
],
143143
],
144144
],
145145
['Accept' => 'application/json']

tests/Support/Rest/Resources/SearchableModelResource.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ class SearchableModelResource extends Resource
1616
public function fields(RestRequest $request): array
1717
{
1818
return [
19-
'id'
19+
'id',
2020
];
2121
}
2222

2323
public function scoutFields(RestRequest $request): array
2424
{
2525
return [
26-
'allowed_scout_field'
26+
'allowed_scout_field',
2727
];
2828
}
2929
}

0 commit comments

Comments
 (0)