Пример #1
0
 /**
  * Returns a copy of this LocalDateTime with the specified period in years subtracted.
  *
  * @param integer $years
  *
  * @return LocalDateTime
  */
 public function minusYears($years)
 {
     return $this->with($this->date->minusYears($years), $this->time);
 }