As of PHP 8.1 there's a syntax for it - https://www.php.net/manual/en/functions.first_class_callable_syntax.php
class MyClass
{
function myFunc1()
{
...
}
function myFunc2()
{
$callable = $this->myFunc1(...);
$callable();
}
}