forked from Sylius/InvoicingPlugin
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpstan.neon
More file actions
15 lines (13 loc) · 1004 Bytes
/
phpstan.neon
File metadata and controls
15 lines (13 loc) · 1004 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
parameters:
excludes_analyse:
# Makes PHPStan crash
- 'src/DependencyInjection/Configuration.php'
# Test dependencies
- 'tests/Application/app/**.php'
- 'tests/Application/src/**.php'
ignoreErrors:
- '/Parameter #1 $configuration of method Symfony\Component\DependencyInjection\Extension\Extension::processConfiguration() expects Symfony\Component\Config\Definition\ConfigurationInterface, Symfony\Component\Config\Definition\ConfigurationInterface|null given./'
- '/Call to an undefined method Symfony\\Component\\Config\\Definition\\Builder\\NodeParentInterface/'
- '/Calling method scalarNode\(\) on possibly null value of type Symfony\\Component\\Config\\Definition\\Builder\\NodeParentInterface\|null/'
- '/Strict comparison using === between Sylius\\InvoicingPlugin\\Entity\\ShopBillingDataAwareInterface/'
- '/Call to an undefined method Sylius\\Component\\Core\\Model\\ChannelInterface::getBillingData()/'