-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpstan.dist.neon
33 lines (33 loc) · 1.28 KB
/
phpstan.dist.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
25
26
27
28
29
30
31
32
33
parameters:
level: 5
paths:
- bin/
- config/
- migrations/
- public/
- src/
- tests/
excludePaths:
- tests/bootstrap.php
ignoreErrors:
- '#^Property CodedMonkey\\Dirigent\\Doctrine\\Entity\\[a-zA-Z]+\:\:\$id \(int\|null\) is never assigned int so it can be removed from the property type\.$#'
-
message: '#^Call to an undefined method Symfony\\Component\\Config\\Definition\\Builder\\NodeDefinition\:\:children\(\)\.$#'
identifier: method.notFound
count: 1
path: src/DependencyInjection/DirigentConfiguration.php
-
message: '#^Left side of \|\| is always false\.$#'
identifier: booleanOr.leftAlwaysFalse
count: 1
path: src/Encryption/Encryption.php
-
message: '#^Right side of \|\| is always false\.$#'
identifier: booleanOr.rightAlwaysFalse
count: 1
path: src/Encryption/Encryption.php
-
message: '#^Property CodedMonkey\\Dirigent\\EventListener\\EncryptionListener\:\:\$connection is never read, only written\.$#'
identifier: property.onlyWritten
count: 1
path: src/EventListener/EncryptionListener.php