<?php class Foo { function foo(callable $fn): void { $fn(); } function a() { $this->foo(function () { echo "yo"; }); } function b() { $this->foo(static function () { echo "yo"; }); } }
You have javascript disabled. You will not be able to edit any code.