Hello! I'm creating a Rector rule, and for some reason I'm getting a warning here (I thought this would work): ```php /** * @param FuncCall $node */ public function refactor(Node $node): ?Node { if ($node->isFirstClassCallable()) { return null; } } ``` <img width="1167" height="176" alt="Image" src="https://github.com/user-attachments/assets/0ecee096-b9c2-4507-9fec-b400120c9fc4" />
Hello!
I'm creating a Rector rule, and for some reason I'm getting a warning here (I thought this would work):