Esempio n. 1
0
 public function testNow()
 {
     $second = Second::now();
     $this->assertEquals(\intval(date('s')), $second->toNative());
 }
Esempio n. 2
0
 public function testGetSecond()
 {
     $time = new Time(new Hour(20), new Minute(10), new Second(34));
     $day = new Second(34);
     $this->assertTrue($day->sameValueAs($time->getSecond()));
 }
Esempio n. 3
0
 /**
  * Returns current Time.
  *
  * @return self
  */
 public static function now()
 {
     $time = new static(Hour::now(), Minute::now(), Second::now());
     return $time;
 }