From 10f6c6cff3f6c4ed7d34cb19b57ced0c58c610f8 Mon Sep 17 00:00:00 2001 From: Serhii Shliakhov Date: Thu, 12 Oct 2023 12:43:03 +0200 Subject: [PATCH] Fix code style --- src/Jobs/Stages/StageInterface.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Jobs/Stages/StageInterface.php b/src/Jobs/Stages/StageInterface.php index 08c5399..cf18c17 100644 --- a/src/Jobs/Stages/StageInterface.php +++ b/src/Jobs/Stages/StageInterface.php @@ -7,6 +7,8 @@ interface StageInterface { public function title(): string; + public function estimate(): int; + public function handle(Client $elasticsearch): void; }