forked from Baldinof/roadrunner-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpstan.neon.dist
23 lines (23 loc) · 1.06 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
parameters:
level: max
paths:
- src
- config
scanFiles:
- vendor/symfony/dependency-injection/Loader/Configurator/ContainerConfigurator.php
inferPrivatePropertyTypeFromConstructor: true
treatPhpDocTypesAsCertain: false
checkMissingIterableValueType: false
ignoreErrors:
- message: '#Access to protected property Symfony\\Component\\HttpKernel\\Kernel::\$startTime.#'
path: 'src/Http/KernelHandler.php'
- message: '#has an unused parameter#' # TODO: Remove unused parameters in v2
path: 'src/Worker/Worker.php'
- message: '#Cannot call method arrayNode#'
path: 'src/DependencyInjection'
- message: '#Class Sentry\\FlushableClientInterface not found#'
path: 'src/Helpers/SentryHelper.php'
- message: '#Call to method flush\(\) on an unknown class Sentry\\FlushableClientInterface#'
path: 'src/Helpers/SentryHelper.php'
- message: '#Call to an undefined method Sentry\\Event::getUserContext\(\)#'
path: 'src/Helpers/SentryHelper.php'