sekolah_adiwiyata/vendor/psr/clock/src/ClockInterface.php

14 lines
206 B
PHP

<?php
namespace Psr\Clock;
use DateTimeImmutable;
interface ClockInterface
{
/**
* Returns the current time as a DateTimeImmutable Object
*/
public function now(): DateTimeImmutable;
}