コード例 #1
0
ファイル: LocalDateTime.php プロジェクト: brick/date-time
 /**
  * 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);
 }