I'm trying to list all the warnings at once so I can work through them. I'm using VS2017 & the (purchases) PHP Tools for Visual Studio. VS/PHP will highlight offending code when I open the source up, but the project I've inherited is huge.
We're moving from PHP 5ish to 7ish. Opening file after file looking for a squiggly line isn't an optimal solution.
Looked through the php.ini & compiler setting on VS, but clearly I'm still missing something.
Example:
Class Site_Features Extends Site
{ function Site_Features()
So the above declaration is flagged as a warning (constructors cannot be of the same name of the class), but I can only see this when I open the file and look for the "squiggly's".
I need the equivalent of "build-all with treat warnings as error" so I can see a big list and just process through them.