Skip to content

Commit 2c4c770

Browse files
[5.x] Fix uninitialized property error from HandleEntrySchedule job (#13648)
1 parent 619d6f6 commit 2c4c770

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)