Submit
Path:
~
/
/
proc
/
thread-self
/
root
/
opt
/
psa
/
admin
/
plib
/
modules
/
wp-toolkit
/
vendor
/
lcobucci
/
clock
/
src
/
File Content:
SystemClock.php
<?php declare (strict_types=1); namespace WPToolkitDependenciesIsolationPrefix\Lcobucci\Clock; use DateTimeImmutable; use DateTimeZone; use function date_default_timezone_get; final class SystemClock implements Clock { public function __construct(private DateTimeZone $timezone) { } public static function fromUTC() : self { return new self(new DateTimeZone('UTC')); } public static function fromSystemTimezone() : self { return new self(new DateTimeZone(date_default_timezone_get())); } public function now() : DateTimeImmutable { return new DateTimeImmutable('now', $this->timezone); } }
Edit
Rename
Chmod
Delete
FILE
FOLDER
INFO
Name
Size
Permission
Action
Clock.php
285 bytes
0644
FrozenClock.php
576 bytes
0644
SystemClock.php
664 bytes
0644
N4ST4R_ID | Naxtarrr