forked from mangoweb-sylius/SyliusExtendedChannelsPlugin
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpstan.neon
More file actions
19 lines (16 loc) · 770 Bytes
/
phpstan.neon
File metadata and controls
19 lines (16 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
includes:
- vendor/phpstan/phpstan-doctrine/extension.neon
- vendor/phpstan/phpstan-symfony/extension.neon
- vendor/phpstan/phpstan-webmozart-assert/extension.neon
parameters:
symfony:
container_xml_path: tests/Application/var/cache/test/testContainer.xml
ignoreErrors:
- '#Method Symfony\\Contracts\\EventDispatcher\\EventDispatcherInterface::dispatch\(\) invoked with 2 parameters, 1 required.#'
- '#Parameter \#1 \$event of method Symfony\\Contracts\\EventDispatcher\\EventDispatcherInterface::dispatch\(\) expects object, string given.#'
excludes_analyse:
# Too slow
- 'src/DependencyInjection/Configuration.php'
# Test dependencies
- '*/tests/Application/var/*'
- 'tests'