rtckit/php-sip

View on GitHub
etc/psalm.xml

Summary

Maintainability
Test Coverage
<?xml version="1.0"?>
<psalm
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xmlns="https://getpsalm.org/schema/config"
  xsi:schemaLocation="https://getpsalm.org/schema/config vendor/vimeo/psalm/config.xsd"
  findUnusedCode="false"
  findUnusedBaselineEntry="false"
>
  <projectFiles>
    <directory name="../src" />
    <ignoreFiles>
      <directory name="../vendor" />
    </ignoreFiles>
  </projectFiles>

  <issueHandlers>
    <PropertyNotSetInConstructor errorLevel="suppress" />
    <TypeDoesNotContainType errorLevel="suppress" />

    <!-- https://github.com/vimeo/psalm/issues/4823 -->
    <RedundantPropertyInitializationCheck errorLevel="suppress" />
    <RedundantCondition errorLevel="suppress" />
  </issueHandlers>
</psalm>