-
Notifications
You must be signed in to change notification settings - Fork 8
/
phpstan.neon
27 lines (22 loc) · 1.56 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
#includes:
# - vendor/phpstan/phpstan-strict-rules/rules.neon
parameters:
ignoreErrors:
# Symfony
- '#Cannot call method arrayNode\(\) on Symfony\\Component\\Config\\Definition\\Builder\\NodeParentInterface\|null#'
- '#Cannot call method end\(\) on Symfony\\Component\\Config\\Definition\\Builder\\NodeParentInterface\|null#'
# Doctrine DBAL
- '#Cannot call method fetchAll\(\) on Doctrine\\DBAL\\Driver\\Statement\|int#'
- '#Cannot call method fetchColumn\(\) on Doctrine\\DBAL\\Driver\\Statement\|int#'
- '#Parameter \#2 \$y of method Doctrine\\DBAL\\Query\\Expression\\ExpressionBuilder::in\(\) expects array\<string\>\|string, array\<int, int\> given#'
# eZ Platform related errors
-
message: '#Access to protected property eZ\\Publish\\API\\Repository\\Values\\Content\\Field::\$value#'
path: lib/Core/Factory/EmailDataFactory.php
-
message: '#Access to protected property eZ\\Publish\\Core\\Repository\\Values\\ContentType\\ContentType::\$fieldDefinitionsById#'
path: lib/Core/Mapper/DomainObjectMapper.php
- '#Access to protected property eZ\\Publish\\API\\Repository\\Values\\Content\\Field::\$value#'
- '#Access to an undefined property EzSystems\\RepositoryForms\\Data\\Content\\FieldData::\$email#'
# Pagerfanta
- '#Property Netgen\\InformationCollection\\Core\\Pagination\\Pagerfanta\\View\\InformationCollectionAdminView::\$pagerfanta \(Pagerfanta\\Pagerfanta\) does not accept Pagerfanta\\PagerfantaInterface#'