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