public function testNow() { $second = Second::now(); $this->assertEquals(\intval(date('s')), $second->toNative()); }
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())); }
/** * Returns current Time. * * @return self */ public static function now() { $time = new static(Hour::now(), Minute::now(), Second::now()); return $time; }