Beispiel #1
0
 /**
  * @return static
  */
 public static function now()
 {
     return new static(Year::now(), Month::now(), Day::now());
 }
Beispiel #2
0
 public function testNow()
 {
     $this->assertSame((int) date('Y'), Year::now()->getValue());
     $this->assertNotSame(1999, Year::now()->getValue());
 }