We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As reported in php/php-src#10024 php -l is dominated by process-creation overhead. therefore with php/php-src#10710 (since php 8.3+) php -l allows to parse multiple files at once which make it considerably faster
php -l
when parallel-lint is running with PHP 8.3+ it would be great it could utilize this new capability to speedup the process.
the idea was already implemented in other php linting projects, which proofed a significant gain in performance.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is your feature request related to a problem?
As reported in php/php-src#10024
php -l
is dominated by process-creation overhead.therefore with php/php-src#10710 (since php 8.3+)
php -l
allows to parse multiple files at once which make it considerably fasterDescribe the solution you'd like
when parallel-lint is running with PHP 8.3+ it would be great it could utilize this new capability to speedup the process.
Additional context (optional)
the idea was already implemented in other php linting projects, which proofed a significant gain in performance.
The text was updated successfully, but these errors were encountered: