Skip to content

Commit e0b321a

Browse files
mckenzieartsactions-user
authored andcommitted
Apply php-cs-fixer changes
1 parent ca80cbf commit e0b321a

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

app/View/Composers/ChannelsComposer.php

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,11 @@ public function compose(View $view)
1212
{
1313
$view->with(
1414
'channels',
15-
Cache::remember('channels', now()->addDay(),
16-
fn () => Channel::with('items')->whereNull('parent_id')->get())
15+
Cache::remember(
16+
'channels',
17+
now()->addDay(),
18+
fn () => Channel::with('items')->whereNull('parent_id')->get()
19+
)
1720
);
1821
}
1922
}

0 commit comments

Comments
 (0)