* @copyright 2016-2020 Daniil Gentili * @license https://opensource.org/licenses/MIT MIT */ namespace danog\Loop\Test\Traits; use Generator; trait Resumable { use Basic; /** * Set interval. * * @var ?int */ protected $interval = 100; /** * Set sleep interval. * * @param ?int $interval Interval * */ public function setInterval(?int $interval): void { $this->interval = $interval; } /** * Loop implementation. * */ public function loop(): Generator { $this->inited = true; $this->pause($this->interval); $this->ran = true; } }