示例#1
0
 /**
  * Returns a copy of this ZonedDateTime with the specified period in days added.
  *
  * @param integer $days
  *
  * @return ZonedDateTime
  */
 public function plusDays($days)
 {
     return ZonedDateTime::of($this->localDateTime->plusDays($days), $this->timeZone);
 }