<?php class ClassName { public function foo(): ?self { return new ClassName(); } public function bar(): ?self { return null; } } $instance = new ClassName(); $instance->foo(); $instance->bar();
You have javascript disabled. You will not be able to edit any code.