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