phpstan.neon 873 B

123456789101112131415161718192021222324
  1. parameters:
  2. level: 6
  3. reportUnmatchedIgnoredErrors: false
  4. paths:
  5. - src
  6. - tests
  7. ignoreErrors:
  8. -
  9. message: '#Method .* has no return typehint specified#'
  10. path: tests/
  11. -
  12. message: '#Method .* has parameter .* with no typehint specified#'
  13. path: tests/
  14. -
  15. message: '#Method .* has parameter .* with no value type specified in iterable type array#'
  16. path: tests/
  17. -
  18. message: '#Method .* return type has no value type specified in iterable type array#'
  19. path: tests/
  20. -
  21. message: '#PHPDoc tag @param has invalid value \(.*\): Unexpected token ".*", expected type at offset .*#'
  22. path: tests/
  23. - '#Call to static method .* on trait .*#'
  24. - '#Access to static property .* on trait .*#'