-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpstan.neon
17 lines (16 loc) · 975 Bytes
/
phpstan.neon
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
includes:
- %currentWorkingDirectory%/vendor/craftcms/phpstan/phpstan.neon
parameters:
level: 5
paths:
- src
ignoreErrors:
- '#Access to property \$[a-zA-Z0-9\\_]+ on an unknown class craft\\commerce\\elements\\Product.#'
- '#Access to property \$[a-zA-Z0-9\\_]+ on an unknown class craft\\digitalproducts\\elements\\Product.#'
- '#Call to method [\(\)a-zA-Z0-9\\_]+ on an unknown class craft\\commerce\\elements\\Product.#'
- '#Call to method [\(\)a-zA-Z0-9\\_]+ on an unknown class craft\\digitalproducts\\elements\\Product.#'
- '#Instantiated class craft\\commerce\\elements\\Product not found.#'
- '#Instantiated class craft\\digitalproducts\\elements\\Product not found.#'
- '#Call to static method getInstance\(\) on an unknown class craft\\commerce\\Plugin.#'
- '#Call to static method getInstance\(\) on an unknown class craft\\digitalproducts\\Plugin.#'
reportUnmatchedIgnoredErrors: false