コード例 #1
0
ファイル: Date.php プロジェクト: nark3d/PhalueObjects
 /**
  * @return bool
  */
 public function isLeap()
 {
     return $this->year->isLeap();
 }
コード例 #2
0
ファイル: YearTest.php プロジェクト: nark3d/PhalueObjects
 public function testFromNative()
 {
     $this->assertEquals(2015, Year::fromNative(new \Datetime('2015-01-23'))->getValue());
 }