in src/datetime/Time.php [378:388]
public function invert(): this {
if ($this->isZero()) {
return $this;
}
return new self(
-$this->hours,
-$this->minutes,
-$this->seconds,
-$this->nanoseconds,
);
}