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