From 448a4af9bc80cf8d6f62843a954d66a40f9d688a Mon Sep 17 00:00:00 2001 From: Rodolfo Berrios <20590102+rodber@users.noreply.github.com> Date: Thu, 19 Oct 2023 20:23:26 -0300 Subject: [PATCH] typos --- src/Interfaces/RunnerInterface.php | 7 ------- src/Interfaces/WorkflowInterface.php | 2 -- 2 files changed, 9 deletions(-) diff --git a/src/Interfaces/RunnerInterface.php b/src/Interfaces/RunnerInterface.php index fdb4245..16b5ebb 100644 --- a/src/Interfaces/RunnerInterface.php +++ b/src/Interfaces/RunnerInterface.php @@ -13,18 +13,11 @@ namespace Chevere\Workflow\Interfaces; -use Psr\Container\ContainerInterface; - /** * Describes the component in charge of running the workflow. */ interface RunnerInterface { - public function __construct( - RunInterface $run, - ContainerInterface $container - ); - public function run(): RunInterface; public function withRun(): self; diff --git a/src/Interfaces/WorkflowInterface.php b/src/Interfaces/WorkflowInterface.php index efe5ffa..f4e3010 100644 --- a/src/Interfaces/WorkflowInterface.php +++ b/src/Interfaces/WorkflowInterface.php @@ -23,8 +23,6 @@ */ interface WorkflowInterface extends Countable { - public function __construct(JobsInterface $jobs); - public function jobs(): JobsInterface; /**