Instead of: ```php $action = fn() => $action; ``` Use: ```php $action = static fn() => $action; ``` > Does it even have any difference?