<?php class Time { public function __construct(public int $seconds) {} } define('SECOND', new Time(1)); define('MINUTE', new Time(60)); var_dump(SECOND == new Time(1)); var_dump(SECOND < MINUTE);
You have javascript disabled. You will not be able to edit any code.