forked from staabm/phpstan-dba
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpstan.neon.dist
More file actions
31 lines (26 loc) · 785 Bytes
/
phpstan.neon.dist
File metadata and controls
31 lines (26 loc) · 785 Bytes
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
includes:
- config/stubFiles.neon
- config/extensions.neon
parameters:
level: max
paths:
- src/
- tests/
bootstrapFiles:
- bootstrap.php
ignoreErrors:
-
message: '#Function Deployer\\runMysqlQuery\(\) should return array<int, array<int, string>>\|null but return statement is missing.#'
path: tests/data/runMysqlQuery.php
-
message: '#.*has no return type specified.#'
path: tests/*
-
message: '#.*with no type specified.#'
path: tests/*
-
message: '#.*return type has no value type specified in iterable type iterable.#'
path: tests/*
excludePaths:
analyseAndScan:
- *Fixture/**