ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ClockFactoryImpl.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Data\Clock;
22 
23 use DateTimeZone;
24 
26 {
30  public function system(): ClockInterface
31  {
32  return new SystemClock();
33  }
34 
38  public function utc(): ClockInterface
39  {
40  return new UtcClock();
41  }
42 
46  public function local(DateTimeZone $time_zone): ClockInterface
47  {
48  return new LocalClock($time_zone);
49  }
50 }
local(DateTimeZone $time_zone)