<?php class Foo { public function returnBool() { return random_int(0,1) > 0; } } function returnsBool(?Foo $foo): bool { return $foo?->returnBool(); } var_dump(returnsBool(null));
You have javascript disabled. You will not be able to edit any code.