-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathphpstan.neon
More file actions
48 lines (44 loc) · 1.45 KB
/
phpstan.neon
File metadata and controls
48 lines (44 loc) · 1.45 KB
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
41
42
43
44
45
46
47
48
includes:
- phpstan-baseline.neon
parameters:
level: 6
paths:
- .castor/
- castor.php
- config
- public
- src
scanFiles:
- .castor.stub.php
tmpDir: tools/phpstan/var
inferPrivatePropertyTypeFromConstructor: true
ignoreErrors:
-
identifier: missingType.iterableValue
-
message: '#^.* Symfony\\Component\\Form\\AbstractType( but)? does not specify its types: TData$#'
identifier: missingType.generics
# -
# message: '#^.* Symfony\\Component\\Form\\FormBuilderInterface( but)? does not specify its types: TData$#'
# identifier: missingType.generics
# -
# message: '#^.* Symfony\\Component\\Form\\FormInterface( but)? does not specify its types: TData$#'
# identifier: missingType.generics
symfony:
containerXmlPath: 'var/cache/dev/App_KernelDevDebugContainer.xml'
typeAliases:
ContextData: '''
array{
project_name: string,
root_domain: string,
extra_domains: string[],
php_version: string,
docker_compose_files: list<string>,
docker_compose_run_environment: list<string>,
macos: bool,
power_shell: bool,
user_id: int,
root_dir: string,
registry?: ?string,
}
'''