-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathphpstan-baseline.neon
More file actions
37 lines (32 loc) · 1.18 KB
/
phpstan-baseline.neon
File metadata and controls
37 lines (32 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
parameters:
ignoreErrors:
-
message: '#^Function arguments\\arguments\(\) has parameter \$word with no type specified\.$#'
identifier: missingType.parameter
count: 1
path: examples/basic/arguments/arguments.php
-
message: '#^Function arguments\\phpunit\(\) has parameter \$rawTokens with no value type specified in iterable type array\.$#'
identifier: missingType.iterableValue
count: 1
path: examples/basic/arguments/raw-tokens.php
-
message: '#^Negated boolean expression is always true\.$#'
identifier: booleanNot.alwaysTrue
count: 1
path: examples/basic/assertion/ensure.php
-
message: '#^Result of function usleep \(void\) is used\.$#'
identifier: function.void
count: 1
path: examples/basic/assertion/ensure.php
-
message: '#^Class RepackedApplication not found\.$#'
identifier: class.notFound
count: 1
path: src/Console/ApplicationFactory.php
-
message: '#^Default value of the parameter \#1 \$data \(array\{\}\) of method Castor\\Context\:\:__construct\(\) is incompatible with type array\{name\: string, production\: bool, foo\?\: string\}\.$#'
identifier: parameter.defaultValue
count: 1
path: src/Context.php