ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
LocalClock.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Data\Clock;
22 
24 use DateTimeZone;
25 
26 class LocalClock implements ClockInterface
27 {
29 
30  public function __construct(DateTimeZone $time_zone)
31  {
32  $this->time_zone = $time_zone;
33  }
34 
35  public function now(): DateTimeImmutable
36  {
37  return new DateTimeImmutable('now', $this->time_zone);
38  }
39 }
__construct(DateTimeZone $time_zone)
Definition: LocalClock.php:30