Do you know a VSCode extension for PHP that would highlight variable that I'd access in read but that were never initialized?
It would be useful for example in this scenario: I write a function A, then I find it too long so I take a portion of A and I move this portion inside a new function B that is called within A. The extension would be useful to be sure that B doesn't contain variables access in read that were declared in A.