FunctionFQNReplacer
FunctionFQNReplacer copied to clipboard
I can see why this ```php namespace App; if (\is_string($s)) ``` is supposed to work faster then this ```php namespace App; if (is_string($s)) ``` but I was wondering if, without...
@nikic provided a nice gist of an experimental php-parser feature that would allow whitespace preservation - see https://gist.github.com/nikic/3229644ada5576622d7d538f6bff2098 Any takers for implementing it also in here? ;-)
Hi ! Idea behind this package is really great! This package is not actively maintained, and some time ago, one of open-source contributor bring this feature into https://github.com/FriendsOfPHP/PHP-CS-Fixer/ as `native_function_invocation`...