From 8565cf0544aa77ead343e9662f71219c9e0b7fa5 Mon Sep 17 00:00:00 2001 From: Robert Landers Date: Mon, 6 Nov 2023 21:35:27 +0100 Subject: [PATCH] add delay func to interface --- src/EntityContextInterface.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/EntityContextInterface.php b/src/EntityContextInterface.php index ff9781d1..bf11e9ce 100644 --- a/src/EntityContextInterface.php +++ b/src/EntityContextInterface.php @@ -111,4 +111,6 @@ public function delayUntil( array $args = [], \DateTimeInterface $until = new \DateTimeImmutable() ): void; + + public function delay(\Closure $self, \DateTimeInterface $until = new \DateTimeImmutable()): void; }