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