Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/public/uploads/../../vendor/psr/clock/src
الملفات الموجودة في هذا الـ Path:
.
..
ClockInterface.php
مشاهدة ملف: ClockInterface.php
<?php
namespace Psr\Clock;
use DateTimeImmutable;
interface ClockInterface
{
/**
* Returns the current time as a DateTimeImmutable Object
*/
public function now(): DateTimeImmutable;
}