From d56df802ca88b42e4af94e188e47af7056182a54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9gory=20Planchat?= Date: Tue, 14 Nov 2023 17:45:56 +0100 Subject: [PATCH] Added the JobCode to the SchedulingInterface::job() method arguments --- src/SchedulingInterface.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SchedulingInterface.php b/src/SchedulingInterface.php index b1c94da..a3174b2 100644 --- a/src/SchedulingInterface.php +++ b/src/SchedulingInterface.php @@ -8,5 +8,5 @@ interface SchedulingInterface { - public function job(JobCodeInterface $job, RunnableInterface $job): self; + public function job(JobCodeInterface $job, RunnableInterface $runnable): self; }