mirror of
https://github.com/danog/loop.git
synced 2024-11-26 20:04:44 +01:00
24 lines
517 B
PHP
24 lines
517 B
PHP
<?php
|
|
/**
|
|
* Resumable loop class.
|
|
*
|
|
* @author Daniil Gentili <daniil@daniil.it>
|
|
* @copyright 2016-2020 Daniil Gentili <daniil@daniil.it>
|
|
* @license https://opensource.org/licenses/MIT MIT
|
|
*/
|
|
|
|
namespace danog\Loop\Impl;
|
|
|
|
use danog\Loop\ResumableLoopInterface;
|
|
use danog\Loop\Traits\ResumableLoop as TraitsResumableLoop;
|
|
|
|
/**
|
|
* Resumable loop abstract class.
|
|
*
|
|
* @author Daniil Gentili <daniil@daniil.it>
|
|
*/
|
|
abstract class ResumableLoop implements ResumableLoopInterface
|
|
{
|
|
use TraitsResumableLoop;
|
|
}
|