public function withMinutes()

in src/datetime/Time.php [264:271]


  public function withMinutes(int $minutes): this {
    return self::fromParts(
      $this->hours,
      $minutes,
      $this->seconds,
      $this->nanoseconds,
    );
  }