| 1 |
<?xml version="1.0"?> |
| 2 |
<psalm |
| 3 |
autoloader="psalm-autoload.php" |
| 4 |
stopOnFirstError="false" |
| 5 |
useDocblockTypes="true" |
| 6 |
> |
| 7 |
<projectFiles> |
| 8 |
<directory name="lib" /> |
| 9 |
</projectFiles> |
| 10 |
<issueHandlers> |
| 11 |
<RedundantConditionGivenDocblockType errorLevel="info" /> |
| 12 |
<UnresolvableInclude errorLevel="info" /> |
| 13 |
<DuplicateClass errorLevel="info" /> |
| 14 |
<InvalidOperand errorLevel="info" /> |
| 15 |
<UndefinedConstant errorLevel="info" /> |
| 16 |
<MissingReturnType errorLevel="info" /> |
| 17 |
<InvalidReturnType errorLevel="info" /> |
| 18 |
</issueHandlers> |
| 19 |
</psalm> |
| 20 |
|