Tom Rochette
Tom Rochette
@spolischook It does support some form of `glob` file path matching (supports *, ? and [...]), but I assumed you were talking about regex patterns.
Still relevant? Dumper of what?
I don't think that the first release will support logic that consider the hierarchy of the scanned classes. For the moment, it is only analyzing the files that have changes...
I'm not too sure I see how that example you gave would work. My guess is that checking out a full git branch is probably more easy/effective than pulling out...
First, the reason I ask for the list of modified files is not to save time on checking out (which is generally very fast with git). The goal is to...
I should probably make it more clear that when I said _read/scan_, I meant the process of actually opening the file for reading and using `PHPParser` to parse its content....
What would you want that https://github.com/Seldaek/monolog cannot already provide?
There's a difference between a final class method and a class final method that does not seem to be taken into account here. For instance, in the case of a...
Nothing is said about the following cases either: ``` php function f(A $a); => function f($a); // A typehint removed function f($a); => function f(A $a); // A typehint added...
Partially implemented by 4666578200505beeea1d82caa4dac456849ed903. Final was left aside.