Ben Mewburn

Results 153 comments of Ben Mewburn

What is it about the workspace symbol search of PHP Intellisense that your prefer?

`@mixin` might be getting limited to mixing in classes only here. This seems like a really strange use of `@mixin` which from my understanding was a way to mimic traits...

Why do you open a single folder with multiple projects? Because of PHP autoloading mechanisms it is difficult to know (with static analysis) what other files are being included/required for...

There may be some things that can be done to better solve symbol name clashes but there always going to be a performance cost to opening a huge folder with...

Thanks, is it worse when many files are open? Does the code have thorough type declarations and annotations or is this patchy?

Is there any improvement with 1.5 for larger files?

Ha, don't get too excited. I don't think it will solve your problems but there was a small performance optimisation in the release.

In the example `private $helpers` is written to but never read, therefore could safely be removed from the class. When `protected` it is possible it is used outside of the...

Thanks for the example. You're right, it shouldn't report this if there is dynamic property access.