phpstan.neon.dist 994 B

123456789101112131415161718192021222324
  1. parameters:
  2. tmpDir: ./build/cache/phpstan
  3. level: max
  4. paths:
  5. - ./src
  6. checkMissingIterableValueType: false
  7. bootstrapFiles:
  8. - ./tests/static-analysis/stubs.php
  9. ignoreErrors:
  10. -
  11. message: '#^Comparison operation ">" between 6 and 0 is always true\.$#'
  12. count: 1
  13. path: ./src/Generator/CombGenerator.php
  14. -
  15. # Legacy methods of `Ramsey\Uuid` use interface methods that are NOT defined on `FieldsInterface`
  16. message: '#^Call to an undefined method Ramsey\\Uuid\\Fields\\FieldsInterface::get.*$#'
  17. count: 9
  18. path: ./src/Lazy/LazyUuidFromString.php
  19. -
  20. message: '#^Constructor of class Ramsey\\Uuid\\FeatureSet has an unused parameter \$forceNoBigNumber\.#'
  21. count: 1
  22. path: ./src/FeatureSet.php
  23. - '#^Method Ramsey\\Uuid\\Generator\\Pecl[A-Za-z]+Generator::generate\(\) should return string but returns string\|false\.$#'