Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot committed Sep 8, 2023
1 parent 191be7a commit 01a9ccd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Channel/Traits/Channelable.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public function scopeWithinChannels(Builder $query, Collection|Channel|array $ch
if ($channels instanceof Channel) {
$ids[] = $channels->getKey();
} else {
foreach($channels as $channel) {
foreach ($channels as $channel) {
$ids[] = $channel instanceof Channel ? $channel->id : $channel;
}
}
Expand Down

0 comments on commit 01a9ccd

Please sign in to comment.