Skip to content

Commit a304ee3

Browse files
committed
Fix uninitialized propery error from HandleEntrySchedule job
1 parent 619d6f6 commit a304ee3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Providers/AppServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ public function boot()
104104

105105
$this->addAboutCommandInfo();
106106

107-
$this->app->make(Schedule::class)->job(new HandleEntrySchedule)->everyMinute();
107+
$this->app->make(Schedule::class)->job(HandleEntrySchedule::class)->everyMinute();
108108
}
109109

110110
public function register()

0 commit comments

Comments
 (0)