13 lines
126 B
PHP
Executable File
13 lines
126 B
PHP
Executable File
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Beste;
|
|
|
|
use Psr\Clock\ClockInterface;
|
|
|
|
interface Clock extends ClockInterface
|
|
{
|
|
|
|
}
|