Rick Kuipers
Rick Kuipers
The documentation could indeed be better, but I also highly question the necessity of this tool since we already have PHPStan. So unless someone still sees value in this, I'm...
@niconoe- I guess PHPStan doesn't exactly do this but it does follow the path and makes sure you don't do anything stupid with incorrect types, so it's a slightly different...
There's currently no way to exclude this. This tool is also not in active development. But feel free to create a PR with a proposal and we can look into...
@ScreamingDev I'm not too sure whether I considered that. I may have gone down this path to learn more about how to write a static analyser. If you can somehow...
@webgast Not sure if you're still interested in this issue, but can you try again with 0.6.0?
I like! I guess some might prefer doing a wget for the phar instead of a composer require.
So this is an interesting case, take this for example: ``` php if ($this->isNewObject()) { // ... } ``` I would personally not want to add the whole `=== true`...
@dennisdegreef I guess introducing the concept of "rules" would not be such a bad idea :) Good thinking Dennis, will give it some more thought :)
It's better to put a resizeTimer with it so it doesn't load a million times when making your window smaller: ``` javascript var resizeTimer; $(window).resize(function(){ if (resizeTimer) clearTimeout(resizeTimer); resizeTimer =...
@carasmo This was answered a couple comments back: https://github.com/jackmoore/colorbox/issues/158#issuecomment-15880521