Esempio n. 1
0
 /**
  * Returns a copy of this LocalDateTime with the minute-of-hour altered.
  *
  * @param integer $minute
  *
  * @return LocalDateTime
  */
 public function withMinute($minute)
 {
     return $this->with($this->date, $this->time->withMinute($minute));
 }