コード例 #1
0
ファイル: LocalDate.php プロジェクト: brick/date-time
 /**
  * Returns a copy of this LocalDate with the specified Period subtracted.
  *
  * @param Period $period
  *
  * @return LocalDate
  */
 public function minusPeriod(Period $period)
 {
     return $this->plusPeriod($period->negated());
 }