* @copyright 2016-2020 Daniil Gentili * @license https://opensource.org/licenses/MIT MIT */ namespace danog\Loop\Test\Interfaces; /** * Basic loop test interface. * * @author Daniil Gentili */ interface LoggingInterface { /** * Get start counter. */ public function startCounter(): int; /** * Get end counter. */ public function endCounter(): int; }