3v4l.org

run code in 300+ PHP versions simultaneously
<?php declare(strict_types=1); class Foo { private $x; public function setX($x) { $this->x = $x; } public function getX() { return $this->x; } } function test() : Foo { return new Foo; } var_dump(test()->setX('test'));

preferences:
54.96 ms | 402 KiB | 5 Q