diff --git a/lib/Loop.php b/lib/Loop.php index be3560b..6224ea0 100644 --- a/lib/Loop.php +++ b/lib/Loop.php @@ -162,7 +162,9 @@ abstract class Loop implements Stringable $this->loopInternal(); }); } - $this->reportPause($timeout); + if ($timeout !== self::CONTINUE) { + $this->reportPause($timeout); + } } }