* @copyright 2016-2020 Daniil Gentili * @license https://opensource.org/licenses/MIT MIT */ namespace danog\Loop\Test\Interfaces; /** * Basic loop test interface. * * @author Daniil Gentili */ interface BasicInterface extends LoggingInterface { /** * Check whether the loop inited. */ public function inited(): bool; /** * Check whether the loop ran. */ public function ran(): bool; }