3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Go { public function if (bool $cond): Go { return $this; } public function then(callable $func): Go { return $this; } } $go = (new Go)->if(5 > 3)->then(function () {echo 'YAY!';}); var_dump($go);

preferences:
57.73 ms | 402 KiB | 5 Q