diff --git a/src/database/seeders/ScheduleSeeder.php b/src/database/seeders/ScheduleSeeder.php index 87f012b95..8db64b1fb 100644 --- a/src/database/seeders/ScheduleSeeder.php +++ b/src/database/seeders/ScheduleSeeder.php @@ -32,11 +32,11 @@ class ScheduleSeeder extends AbstractScheduleSeeder { /** - * Returns an array of schedules that should be seeded whenever the stack boots up + * Returns an array of schedules that should be seeded whenever the stack boots up. * * @return array */ - function getSchedules(): array + public function getSchedules(): array { return [ [ // Horizon Metrics | Every Five Minutes @@ -51,10 +51,11 @@ function getSchedules(): array } /** - * Returns a list of commands to remove from the schedule + * Returns a list of commands to remove from the schedule. + * * @return array */ - function getDeprecatedSchedules(): array + public function getDeprecatedSchedules(): array { return []; }