-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathphpstan.neon
24 lines (23 loc) · 1.18 KB
/
phpstan.neon
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
parameters:
level: 8
paths:
- src/admin
- src/Component
- src/Config
- src/Exception
- src/Lib
- src/Module
- src/Orm
ignoreErrors:
- '#Property Stu\\Orm\\Entity\\(\w+)::\$(\w+) is never written, only read#'
- '#Parameter \$targetEntity of attribute class Doctrine\\ORM\\Mapping\\(\w+) constructor expects class-string\|null, string given.#'
- '#Property Stu\\Orm\\Entity\\(\w+)::\$(\w+) type mapping mismatch\: property can contain Stu\\Orm\\Entity\\(\w+)(\|null)? but database expects Stu\\Orm\\Entity\\(\w+)(\|null)?#'
- '#Property Stu\\Orm\\Entity\\(\w+)::\$(\w+) type mapping mismatch\: database can contain Stu\\Orm\\Entity\\(\w+)(\|null)? but property expects Stu\\Orm\\Entity\\(\w+)(\|null)?#'
- '#Property Stu\\Orm\\Entity\\(\w+)::\$(\w+) type mapping mismatch\: property can contain Doctrine\\Common\\Collections\\ArrayCollection\<int, Stu\\Orm\\Entity\\(\w+)\> but database expects Doctrine\\Common\\Collections\\Collection\&iterable\<Stu\\Orm\\Entity\\(\w+)\>#'
parallel:
jobSize: 20
maximumNumberOfProcesses: 8
minimumNumberOfJobsPerProcess: 2
includes:
- vendor/phpstan/phpstan/conf/bleedingEdge.neon
- phpstan-baseline.neon