Esempio n. 1
0
 /**
  * Returns a copy of this ZonedDateTime with the specified Period added.
  *
  * @param Period $period
  *
  * @return ZonedDateTime
  */
 public function plusPeriod(Period $period)
 {
     return ZonedDateTime::of($this->localDateTime->plusPeriod($period), $this->timeZone);
 }