* @copyright 2016-2020 Daniil Gentili * @license https://opensource.org/licenses/MIT MIT */ namespace danog\Loop\Test\Interfaces; /** * Resumable loop test interface. * * @author Daniil Gentili */ interface ResumableInterface extends BasicInterface { /** * Set sleep interval. * * @param ?int $interval Interval * * @return void */ public function setInterval(?int $interval): void; }