diff --git a/src/Jobs/Stages/StageInterface.php b/src/Jobs/Stages/StageInterface.php index 08c5399..e5cff30 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; }