-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpstan.neon
More file actions
22 lines (21 loc) · 881 Bytes
/
phpstan.neon
File metadata and controls
22 lines (21 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
includes:
- vendor/phpstan/phpstan-deprecation-rules/rules.neon
- vendor/phpstan/phpstan-phpunit/extension.neon
- vendor/phpstan/phpstan-phpunit/rules.neon
- vendor/phpstan/phpstan-strict-rules/rules.neon
- vendor/phpstan/phpstan-symfony/extension.neon
- vendor/phpstan/phpstan-symfony/rules.neon
parameters:
level: 8
paths:
- src
- tests
tmpDir: /tmp/phpstan
ignoreErrors:
# Symfony's AbstractBundle::loadExtension() and ConfigurableExtensionInterface::loadExtension()
# declare $config as untyped `array`. Our override narrows it to `array<string, mixed>`,
# which is technically not contravariant but is safe because the framework always passes
# a processed config array.
-
identifier: method.childParameterType
path: src/LuneticsLlmCostTrackingBundle.php