Skip to content

Commit 0b3b6d5

Browse files
authored
Merge pull request #116 from Propaganistas/patch-1
don't write to horizon config when not available
2 parents 7f96c75 + 2a111ec commit 0b3b6d5

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/ScheduleMonitorServiceProvider.php

+5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
use Illuminate\Console\Events\CommandStarting;
66
use Illuminate\Console\Scheduling\Event as SchedulerEvent;
77
use Illuminate\Support\Facades\Event;
8+
use Laravel\Horizon\Horizon;
89
use OhDear\PhpSdk\OhDear;
910
use Spatie\LaravelPackageTools\Package;
1011
use Spatie\LaravelPackageTools\PackageServiceProvider;
@@ -88,6 +89,10 @@ protected function silenceOhDearJob(): self
8889
return $this;
8990
}
9091

92+
if (! class_exists(Horizon::class)) {
93+
return $this;
94+
}
95+
9196
$silencedJobs = config('horizon.silenced', []);
9297

9398
if (in_array(PingOhDearJob::class, $silencedJobs)) {

0 commit comments

Comments
 (0)