<?php /** * @template T * * @param class-string<T> $foo * * @return T */ function Foo(string $foo) : object { return new $foo; } var_dump(Foo('DateTime'));
You have javascript disabled. You will not be able to edit any code.