Skip to content

Commit

Permalink
make php 8 compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
okaufmann committed Nov 8, 2022
1 parent d6f2360 commit 8d2998b
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/Commands/LaravelHorizonDoctorCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,7 @@ public function handle(): int

foreach ($default as $key => $value) {
if (isset($horizonConfigs[$key])) {
$horizonConfigs[$key] = [
...$value,
...$horizonConfigs[$key],
];
$horizonConfigs[$key] = array_merge($value, $horizonConfigs[$key]);
}
}

Expand Down

0 comments on commit 8d2998b

Please sign in to comment.