コード例 #1
0
ファイル: HammerTime.php プロジェクト: cherrypick/hammertime
 /**
  * @param HammerTime $otherDate
  * @return bool
  */
 public function isSameDate(HammerTime $otherDate)
 {
     return $this->copy()->startOfDay()->eq($otherDate->copy()->startOfDay());
 }