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