Exemplo n.º 1
0
 /**
  * Returns a copy of this ZonedDateTime with the minute-of-hour altered.
  *
  * @param integer $minute
  *
  * @return ZonedDateTime
  */
 public function withMinute($minute)
 {
     return ZonedDateTime::of($this->localDateTime->withMinute($minute), $this->timeZone);
 }