public function isZero()

in src/datetime/Time.php [203:208]


  public function isZero(): bool {
    return $this->hours === 0 &&
      $this->minutes === 0 &&
      $this->seconds === 0 &&
      $this->nanoseconds === 0;
  }