phpstan.neon.dist 574 B

1234567891011121314151617181920
  1. includes:
  2. - vendor/phpstan/phpstan-phpunit/extension.neon
  3. - vendor/phpstan/phpstan-phpunit/rules.neon
  4. parameters:
  5. level: max
  6. paths:
  7. - src
  8. - tests
  9. ignoreErrors:
  10. -
  11. message: '#::__construct\(\) does not call parent constructor from#'
  12. path: '*/tests/DoctrineTest/InstantiatorTestAsset/*.php'
  13. # dynamic properties confuse static analysis
  14. -
  15. message: '#Access to an undefined property object::\$foo\.#'
  16. path: '*/tests/DoctrineTest/InstantiatorTest/InstantiatorTest.php'