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
All distributions (source code via Composer installation, Docker image, PHAR version) are impacted by this issue.
Analyse multiple path at same time did not work with console command
Be able to scan multiple directories at same time
Only first directory is scanned
bin/phplint --no-configuration --ignore-exit-code -vvv src/ examples/ tests/
phplint 9.0.3 by overtrue and contributors. Runtime : PHP 8.1.14 Configuration : No config file loaded ┌──────────────────┬──────────────────┬─────────┐ │ Name │ Value │ Help │ ├──────────────────┼──────────────────┼─────────┤ │ path │ ["src/"] │ command │ ├──────────────────┼──────────────────┼─────────┤ │ configuration │ ".phplint.yml" │ command │ │ no-configuration │ true │ command │ │ exclude │ [] │ command │ │ extensions │ ["php"] │ command │ │ jobs │ 5 │ command │ │ no-cache │ false │ command │ │ cache │ ".phplint.cache" │ command │ │ no-progress │ false │ command │ │ progress │ "printer" │ command │ │ log-json │ null │ command │ │ log-junit │ null │ command │ │ warning │ false │ command │ │ memory-limit │ "512M" │ command │ │ ignore-exit-code │ true │ command │ └──────────────────┴──────────────────┴─────────┘ Time: < 1 sec, Memory: 6.0 MiB, Cache: 34 hits, 0 miss [OK] 34 files
The text was updated successfully, but these errors were encountered:
Works as expected when using multiple paths with configuration YAML file :
path: - ./src - ./tests jobs: 10 extensions: - php exclude: - vendor warning: true memory-limit: -1 no-cache: false log-json: false log-junit: false
Running command (from PHPLint Git clone copy of source code) :
bin/phplint -vvv
Gave following results :
Sorry, something went wrong.
fix issue #185
9002c8f
Fix results by image 😄
llaville
No branches or pull requests
New Issue
Diagnose
All distributions (source code via Composer installation, Docker image, PHAR version) are impacted by this issue.
Summary
Analyse multiple path at same time did not work with console command
Expected behaviour
Be able to scan multiple directories at same time
Actual behaviour
Only first directory is scanned
The text was updated successfully, but these errors were encountered: