Пример #1
0
 public function test_that_now_returns_expected_instance()
 {
     $dateTime = new NativeDateTime('now', new DateTimeZone('America/Chicago'));
     $time = Time::now('America/Chicago');
     $hour = (int) $dateTime->format('G');
     $this->assertSame($hour, $time->hour());
 }