Part-DB.Part-DB-server/psalm.xml

56 lines
1.9 KiB
XML
Raw Normal View History

2019-09-23 13:29:51 +02:00
<?xml version="1.0"?>
<psalm
2020-03-29 23:13:25 +02:00
errorLevel="5"
2019-09-23 13:29:51 +02:00
totallyTyped="false"
resolveFromConfigFile="true"
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"
>
<projectFiles>
2020-03-29 23:13:25 +02:00
<directory name="src"/>
2019-09-23 13:29:51 +02:00
<ignoreFiles>
2020-03-29 23:13:25 +02:00
<directory name="vendor"/>
2019-09-23 13:29:51 +02:00
</ignoreFiles>
</projectFiles>
<issueHandlers>
2020-03-29 23:13:25 +02:00
<LessSpecificReturnType errorLevel="info"/>
2019-09-23 13:29:51 +02:00
<!-- level 3 issues - slightly lazy code writing, but provably low false-negatives -->
2020-03-29 23:13:25 +02:00
<DeprecatedMethod errorLevel="info"/>
<DeprecatedProperty errorLevel="info"/>
<DeprecatedClass errorLevel="info"/>
<DeprecatedConstant errorLevel="info"/>
<DeprecatedFunction errorLevel="info"/>
<DeprecatedInterface errorLevel="info"/>
<DeprecatedTrait errorLevel="info"/>
2019-09-23 13:29:51 +02:00
2020-03-29 23:13:25 +02:00
<InternalMethod errorLevel="info"/>
<InternalProperty errorLevel="info"/>
<InternalClass errorLevel="info"/>
2019-09-23 13:29:51 +02:00
2020-03-29 23:13:25 +02:00
<MissingClosureReturnType errorLevel="info"/>
<MissingReturnType errorLevel="info"/>
<MissingPropertyType errorLevel="info"/>
<InvalidDocblock errorLevel="info"/>
2019-09-23 13:29:51 +02:00
2020-03-29 23:13:25 +02:00
<PropertyNotSetInConstructor errorLevel="info"/>
<MissingConstructor errorLevel="info"/>
<MissingClosureParamType errorLevel="info"/>
<MissingParamType errorLevel="info"/>
2019-09-23 13:29:51 +02:00
2020-03-29 23:13:25 +02:00
<RedundantCondition errorLevel="info"/>
2019-09-23 13:29:51 +02:00
2020-03-29 23:13:25 +02:00
<DocblockTypeContradiction errorLevel="info"/>
<RedundantConditionGivenDocblockType errorLevel="info"/>
2019-09-23 13:29:51 +02:00
2020-03-29 23:13:25 +02:00
<UnresolvableInclude errorLevel="info"/>
2019-09-23 13:29:51 +02:00
2020-03-29 23:13:25 +02:00
<RawObjectIteration errorLevel="info"/>
2019-09-23 13:29:51 +02:00
2020-03-29 23:13:25 +02:00
<InvalidStringClass errorLevel="info"/>
2019-09-23 13:29:51 +02:00
</issueHandlers>
2020-03-29 23:13:25 +02:00
<plugins><pluginClass class="Psalm\SymfonyPsalmPlugin\Plugin"/></plugins></psalm>