- Output for 8.2.0 - 8.2.29, 8.3.0 - 8.3.26, 8.4.1 - 8.4.13
- bool(true) bool(true)
<?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);