Your IP : 18.227.134.165


Current Path : /home/lentoinv/api.lentoria.com/vendor/stella-maris/clock/src/
Upload File :
Current File : //home/lentoinv/api.lentoria.com/vendor/stella-maris/clock/src/ClockInterface.php

<?php
/**
 * Copyright Andreas Heigl <andreas@heigl.org>
 *
 * Licenses under the MIT-license. For details see the included file LICENSE.md
 */

namespace StellaMaris\Clock;

use DateTimeImmutable;

interface ClockInterface
{
    /**
     * Return the current point in time as a DateTimeImmutable object
     */
    public function now(): DateTimeImmutable;
}

?>