Skip to content

Commit

Permalink
styleci
Browse files Browse the repository at this point in the history
  • Loading branch information
recursivetree committed Mar 24, 2024
1 parent 9dcf351 commit 1824598
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/database/seeders/ScheduleSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 [];
}
Expand Down

0 comments on commit 1824598

Please sign in to comment.