Skip to content

Commit 10e5af3

Browse files
jbrooksukgithub-actions[bot]
authored andcommitted
Fix code styling
1 parent ea2197c commit 10e5af3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Http/Controllers/Api/IncidentUpdateController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public function show(Incident $incident, Update $update)
7676
{
7777
$updateQuery = QueryBuilder::for($update)
7878
->allowedIncludes([
79-
AllowedInclude::relationship('incident', 'updateable')
79+
AllowedInclude::relationship('incident', 'updateable'),
8080
])
8181
->first();
8282

src/Http/Controllers/Api/ScheduleUpdateController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public function show(Schedule $schedule, Update $update)
7676
{
7777
$updateQuery = QueryBuilder::for($update)
7878
->allowedIncludes([
79-
AllowedInclude::relationship('schedule', 'updateable')
79+
AllowedInclude::relationship('schedule', 'updateable'),
8080
])
8181
->first();
8282

0 commit comments

Comments
 (0)