forked from dvelum/dvelum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpstan.neon
25 lines (25 loc) · 1.02 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
includes:
- vendor/phpstan/phpstan/conf/config.level1.neon
parameters:
bootstrap: %currentWorkingDirectory%/tests/phpstan/bootstrap.php
excludes_analyse:
- %currentWorkingDirectory%/application/templates
- %currentWorkingDirectory%/dvelum/templates
- %currentWorkingDirectory%/vendor
- %currentWorkingDirectory%/dvelum/library/Cache/Memcached.php
- %currentWorkingDirectory%/dvelum2/Dvelum/Cache/Memcached.php
autoload_directories:
- %currentWorkingDirectory%/application
- %currentWorkingDirectory%/dvelum
- %currentWorkingDirectory%/dvelum2
- %currentWorkingDirectory%/tests/unit/dvelum/app
- %currentWorkingDirectory%/tests/unit/dvelum/library
- %currentWorkingDirectory%/tests/unit/dvelum2
- %currentWorkingDirectory%/tests/integration
autoload_files: []
polluteCatchScopeWithTryAssignments: true
reportUnmatchedIgnoredErrors: false
ignoreErrors:
- '#Function pinba_[a-zA-Z0-9\\_]#'
- '#Function finfo_[a-zA-Z0-9\\_]#'
- '#Function ldap_[a-zA-Z0-9\\_]#'