1
0
mirror of https://github.com/danog/loop.git synced 2024-12-12 01:09:40 +01:00
loop/test/Interfaces/ResumableInterface.php

23 lines
492 B
PHP
Raw Normal View History

2020-07-21 19:12:11 +02:00
<?php
/**
* Resumable 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 19:12:11 +02:00
2020-07-23 13:26:16 +02:00
use danog\Loop\Interfaces\ResumableLoopInterface;
2020-07-21 19:12:11 +02:00
/**
* Resumable loop test interface.
*
* @author Daniil Gentili <daniil@daniil.it>
*/
2020-07-23 13:26:16 +02:00
interface ResumableInterface extends BasicInterface, IntervalInterface, ResumableLoopInterface
2020-07-21 19:12:11 +02:00
{
}