Mathieu Rochette
                                            Mathieu Rochette
                                        
                                    > if the error is saying use an absolute path, then using "/var/www/htdocs/mysite/products/index.php" will solve the issue To continue with your example, if the rule was "use absolute path for...
> The only way to know that would be via static analysis. which PHPCS (& by extension the slevomat sniffs) don't perform.. yeah I fear this might be impossible for...
I _think_ `FullyQualified` in those sniffs also mean that you have to use the full namespace everywhere in the code (ie: without a `use` statement) otherwise, this sniff would be...
yeah that's what I starting to fear while reading the code in this repository. At first I was thinking this could be added to the handler but as it would...
so I solved it in my project by manually creating the handlers and decorating them with a `ToggleableHandler` would adding a similar mechanism into the bundle be a welcome addition...
I just realized that it’s very probably because I missed the mapping_types config while this solves my issue without having to extend the class, it would be nice to implement...
@stalniy which package / repository are you talking too? I have no `vue-compiler` in my vuejs projects
@srlevitt I don’t know how you would install nodejs, I think the package manager have been purposefully removed or omitted anyway, my advice would be to run whatever you want...
this seems nice, it's always a PITA to come working with iterator in php back from rust (or javascript with lodash) * find(Callable): mixed search the first item matching the...
I'm ok for `sum` returning 0, however I'm not sure about `product`, I think it should return 1 ([the identity element](https://en.wikipedia.org/wiki/Identity_element)) so that `$a->product() * $b->product() === $a->chain($b)->product()` is always...