1
0
mirror of https://github.com/danog/loop.git synced 2025-01-08 13:38:15 +01:00
loop/test/Interfaces/BasicInterface.php

31 lines
644 B
PHP
Raw Normal View History

2022-12-24 14:36:39 +01:00
<?php declare(strict_types=1);
2020-07-21 18:06:19 +02:00
/**
* 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
*/
2020-07-21 19:53:57 +02:00
namespace danog\Loop\Test\Interfaces;
2020-07-21 18:06:19 +02:00
2020-07-21 21:45:22 +02:00
use danog\Loop\Interfaces\LoopInterface;
2020-07-21 18:06:19 +02:00
/**
* Basic loop test interface.
*
* @author Daniil Gentili <daniil@daniil.it>
*/
2020-07-23 13:26:16 +02:00
interface BasicInterface extends LoopInterface, LoggingInterface
2020-07-21 18:06:19 +02:00
{
/**
* Check whether the loop inited.
*/
public function inited(): bool;
/**
* Check whether the loop ran.
*/
public function ran(): bool;
}