forked from wizacode/php-etl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpstan.neon.dist
41 lines (36 loc) · 1.27 KB
/
phpstan.neon.dist
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
38
39
40
# WARNING: DO NOT ADD ANY EXCLUSION. THE ONES ALREADY HERE ARE FOR THE LEGACY CODE.
parameters:
level: 6
paths:
- src
- tests
checkMissingIterableValueType: false
checkGenericClassInNonGenericObjectType: false
ignoreErrors:
-
message: '~^Variable method call on ~'
path: src/Database/Query.php
-
message: '~^Variable method call on ~'
path: src/Database/Statement.php
-
message: '~^Variable method call on ~'
path: src/Etl.php
-
message: '~^Variable property access on ~'
path: src/Row.php
-
message: '~^Variable property access on ~'
path: src/Step.php
-
message: '~^Dynamic call to static method XMLReader::open\(\)\.~'
path: src/Extractors\Xml.php
-
message: '~Variable method call on Wizaplace\\Etl\\Step\.~'
path: tests/Tools/AbstractTestCase.php
-
message: '~Access to an undefined property Wizaplace\\Etl\\Row::\$name\.~'
path: tests/Unit/RowTest.php
-
message: '~Method Wizaplace\\Etl\\Row::offsetGet\(\) has no return typehint specified.~'
path: src/Row.php