mirror of
https://github.com/danog/loop.git
synced 2024-12-04 02:07:56 +01:00
31 lines
616 B
PHP
31 lines
616 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;
|
|
|
|
use danog\Loop\Interfaces\LoopInterface;
|
|
|
|
/**
|
|
* Basic loop test interface.
|
|
*
|
|
* @author Daniil Gentili <daniil@daniil.it>
|
|
*/
|
|
interface LoggingInterface extends LoopInterface
|
|
{
|
|
/**
|
|
* Get start counter.
|
|
*/
|
|
public function startCounter(): int;
|
|
/**
|
|
* Get end counter.
|
|
*/
|
|
public function endCounter(): int;
|
|
}
|