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