-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpstan.neon
34 lines (27 loc) · 1.27 KB
/
phpstan.neon
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
includes:
- vendor/spryker-sdk/phpstan-spryker/extension.neon
- vendor/phpstan/phpstan/conf/bleedingEdge.neon
parameters:
level: 6
paths:
- src/
excludePaths:
- '%rootDir%/../../../src/Generated/*'
- '%rootDir%/../../../src/Orm/*'
bootstrapFiles:
- '%rootDir%/../../../phpstan-bootstrap.php'
ignoreErrors:
- '#Call to an undefined method .+Criteria::.+\(\).#'
- '#Call to an undefined method .+DataSetStepBrokerAwareInterface::setDataSetWriter\(\).#'
- '#Call to an undefined method .+DataSetStepBrokerAwareInterface::addAfterImportHook\(\).#'
- '#Parameter \#1 \$rawCatalogSearchResultFormatterPlugin of class .+CurrencyAwareSuggestionByTypeResultFormatter constructor expects .+ResultFormatterPluginInterface, .+SuggestionByTypeResultFormatterPlugin given.#'
- '#Method .+CheckoutPageDependencyProvider::.+\(\) return type has no value type specified in iterable type .+FormInterface.#'
- '#PHPDoc tag .+with type string is not subtype of native type mixed.#'
reportUnmatchedIgnoredErrors: false
dynamicConstantNames:
- APPLICATION
- APPLICATION_ENV
- APPLICATION_STORE
- APPLICATION_CODE_BUCKET
parallel:
maximumNumberOfProcesses: 1