mirror of
https://github.com/beste/clock.git
synced 2026-08-17 17:47:13 +00:00
13 lines
126 B
PHP
13 lines
126 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Beste;
|
|
|
|
use Psr\Clock\ClockInterface;
|
|
|
|
interface Clock extends ClockInterface
|
|
{
|
|
|
|
}
|