/home/mip/mip/public/img/credit/datatables/ClockInterface.php.tar
home/mip/mip/vendor/psr/clock/src/ClockInterface.php000064400000000316151520661160016421 0ustar00<?php

namespace Psr\Clock;

use DateTimeImmutable;

interface ClockInterface
{
    /**
     * Returns the current time as a DateTimeImmutable Object
     */
    public function now(): DateTimeImmutable;
}