Skip to content

Commit 20c87ca

Browse files
committed
fix: compatible scheduler interface
1 parent 0783df0 commit 20c87ca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ProdScheduler/AbstractScheduler.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ abstract class AbstractScheduler
66
{
77
use SchedulerComputeTrait;
88

9-
public function schedule()
9+
public function schedule(): void
1010
{
11-
return $this->compute();
11+
$this->compute();
1212
}
1313

1414
public function getMonthSchedule(): array

0 commit comments

Comments
 (0)