forked from instride-ch/pimcore-data-definitions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpstan.neon
43 lines (38 loc) · 2.39 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
35
36
37
38
39
40
41
42
43
parameters:
reportUnmatchedIgnoredErrors: false
symfony:
container_xml_path: var/cache/dev/KernelDevDebugContainer.xml
excludePaths:
# Makes PHPStan crash
- '**/DependencyInjection/Configuration.php'
- '**/Migrations/Version*.php'
# Ignore cause the file uses external dependencies and will only be used if those dependencies are met
- '**/ProcessManager/*.php'
- '**/CoreShop/*.php'
- '**/Dao.php'
ignoreErrors:
# Magic calls
- '/Call to an undefined static method Webmozart\\Assert\\Assert::all/'
- '/Call to an undefined static method Webmozart\\Assert\\Assert::nullOr/'
- '/Call to an undefined method Faker\\Generator::/'
- '/Access to an undefined property Faker\\Generator::/'
- '/Constant PIMCORE_SYSTEM_TEMP_DIRECTORY not found./'
- '/Constant PIMCORE_CONFIGURATION_DIRECTORY not found./'
- '/Constant PIMCORE_CLASS_DIRECTORY not found./'
- '/Constant PIMCORE_WEB_ROOT not found./'
- '/Constant PIMCORE_DEVMODE not found./'
- '/Class Zend_Paginator_Adapter_Interface not found and could not be autoloaded./'
- '/Call to an undefined method Symfony\\Component\\Config\\Definition\\Builder\\NodeDefinition::children\(\)/'
- '/Call to an undefined method Pimcore\\Model\\\(.*\)::save\(\)./'
- '/Call to an undefined method Pimcore\\Model\\\(.*\)::delete\(\)./'
- '/Call to an undefined method Wvision\\Bundle\\DataDefinitionsBundle\\Model\\Log\\Listing::load\(\)./'
- '/Call to an undefined method Wvision\\Bundle\\DataDefinitionsBundle\\Model\\Log\\Listing::getTotalCount\(\)./'
- '/Call to an undefined method Wvision\\Bundle\\DataDefinitionsBundle\\Model\\Log::delete\(\)./'
- '/Call to an undefined method Wvision\\Bundle\\DataDefinitionsBundle\\Model\\Log::save\(\)./'
- '/Call to an undefined method Wvision\\Bundle\\DataDefinitionsBundle\\Model\\Log::getById\(\)./'
- '/Call to an undefined method Wvision\\Bundle\\DataDefinitionsBundle\\Model\\ExportDefinition\\Listing::load\(\)./'
- '/Call to an undefined method Wvision\\Bundle\\DataDefinitionsBundle\\Model\\ImportDefinition\\Listing::load\(\)./'
includes:
- vendor/phpstan/phpstan-doctrine/extension.neon
- vendor/phpstan/phpstan-symfony/extension.neon
- vendor/phpstan/phpstan-webmozart-assert/extension.neon