mirror of
https://github.com/danog/loop.git
synced 2024-12-11 16:59:46 +01:00
29 lines
587 B
PHP
29 lines
587 B
PHP
<?php declare(strict_types=1);
|
|
|
|
/**
|
|
* Basic loop test interface.
|
|
*
|
|
* @author Daniil Gentili <daniil@daniil.it>
|
|
* @copyright 2016-2020 Daniil Gentili <daniil@daniil.it>
|
|
* @license https://opensource.org/licenses/MIT MIT
|
|
*/
|
|
|
|
namespace danog\Loop\Test\Interfaces;
|
|
|
|
/**
|
|
* Basic loop test interface.
|
|
*
|
|
* @author Daniil Gentili <daniil@daniil.it>
|
|
*/
|
|
interface BasicInterface extends LoggingInterface
|
|
{
|
|
/**
|
|
* Check whether the loop inited.
|
|
*/
|
|
public function inited(): bool;
|
|
/**
|
|
* Check whether the loop ran.
|
|
*/
|
|
public function ran(): bool;
|
|
}
|