forked from alma-oss/php-coding-standard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpstan.neon
More file actions
16 lines (16 loc) · 942 Bytes
/
phpstan.neon
File metadata and controls
16 lines (16 loc) · 942 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
parameters:
level: 7
paths:
- src/
- tests/
bootstrapFiles:
- vendor/squizlabs/php_codesniffer/autoload.php
- vendor/squizlabs/php_codesniffer/src/Util/Tokens.php
ignoreErrors:
- message: '#Parameter \#(2|3) \$(argumentStart|argumentEnd) of method PhpCsFixer\\Tokenizer\\Analyzer\\ArgumentsAnalyzer::getArgumentInfo\(\) expects int#'
path: %currentWorkingDirectory%/src/Fixer/SpecifyArgSeparatorFixer.php
- message: '#Parameter \#1 \$code of static method PhpCsFixer\\Tokenizer\\Tokens::fromCode\(\) expects string, string\|false given#'
path: %currentWorkingDirectory%/tests/Fixer/SpecifyArgSeparatorFixerTest.php
- message: '#Parameter \#1 \$filename of function file_get_contents expects string, string\|false given.#'
path: %currentWorkingDirectory%/tests/Fixer/SpecifyArgSeparatorFixerTest.php
checkMissingIterableValueType: false