From e842de5e5279aa22f939565ab8feb788143affec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9gory=20Planchat?= Date: Tue, 14 Nov 2023 11:33:25 +0100 Subject: [PATCH] Updated the contracts --- src/FlushableInterface.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/FlushableInterface.php b/src/FlushableInterface.php index 73f7a92..cb0ad63 100644 --- a/src/FlushableInterface.php +++ b/src/FlushableInterface.php @@ -4,7 +4,6 @@ namespace Kiboko\Contract\Pipeline; -use Kiboko\Component\Bucket\EmptyResultBucket; use Kiboko\Contract\Bucket\ResultBucketInterface; /** @@ -12,6 +11,6 @@ */ interface FlushableInterface { - /** @return ResultBucketInterface|EmptyResultBucket */ + /** @return ResultBucketInterface */ public function flush(): ResultBucketInterface; }