psalm.xml 1.1 KB

123456789101112131415161718192021222324252627282930
  1. <?xml version="1.0"?>
  2. <psalm
  3. errorLevel="1"
  4. resolveFromConfigFile="true"
  5. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  6. xmlns="https://getpsalm.org/schema/config"
  7. xsi:schemaLocation="https://getpsalm.org/schema/config vendor/vimeo/psalm/config.xsd"
  8. findUnusedBaselineEntry="true"
  9. findUnusedCode="false"
  10. >
  11. <projectFiles>
  12. <directory name="lib/Doctrine/Deprecations" />
  13. <directory name="tests/Doctrine/Deprecations" />
  14. <ignoreFiles>
  15. <directory name="vendor" />
  16. </ignoreFiles>
  17. </projectFiles>
  18. <plugins>
  19. <pluginClass class="Psalm\PhpUnitPlugin\Plugin"/>
  20. </plugins>
  21. <issueHandlers>
  22. <DeprecatedMethod>
  23. <errorLevel type="suppress">
  24. <!-- Remove when dropping support for PHPUnit 9.6 -->
  25. <referencedMethod name="PHPUnit\Framework\TestCase::expectDeprecation"/>
  26. <referencedMethod name="PHPUnit\Framework\TestCase::expectDeprecationMessage"/>
  27. </errorLevel>
  28. </DeprecatedMethod>
  29. </issueHandlers>
  30. </psalm>