forked from symfony/ai-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpstan.dist.neon
More file actions
30 lines (29 loc) · 1010 Bytes
/
phpstan.dist.neon
File metadata and controls
30 lines (29 loc) · 1010 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
includes:
- ../../.phpstan/extension.neon
parameters:
level: 6
paths:
- src/
- tests/
excludePaths:
- src/Bridge/
treatPhpDocTypesAsCertain: false
ignoreErrors:
-
message: "#^Method .*::test.*\\(\\) has no return type specified\\.$#"
-
message: '#supportsNormalization\(\) has parameter \$context with no value type specified in iterable type array#'
path: src/*
reportUnmatched: false # only needed for older Symfony versions
-
message: '#getSupportedTypes\(\) return type has no value type specified in iterable type array#'
path: src/*
reportUnmatched: false # only needed for older Symfony versions
-
identifier: missingType.iterableValue
path: tests/*
reportUnmatched: false
-
identifier: 'symfonyAi.forbidNativeException'
path: tests/*
reportUnmatched: false