In PHP is it possible to do something like this:
myFunction( MyClass::staticMethod );
so that \'myFunction\' will have a reference to the stati
As of PHP 7.4, this is convenient and IDE-friendly:
myFunction(fn() => MyClass::staticMethod());