Skip to content

Commit

Permalink
Try to fix Psalm errors on all possible dependency matrices
Browse files Browse the repository at this point in the history
  • Loading branch information
loevgaard committed Sep 23, 2024
1 parent f01348a commit a76751e
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions psalm.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,23 @@
<referencedClass name="Symfony\Component\Mailer\Event\SentMessageEvent"/>
</errorLevel>
</UndefinedClass>
<MixedAssignment>
<errorLevel type="suppress">
<!-- The reason we do this is that the Symfony Mailer is an optional dependency -->
<file name="src/EventSubscriber/SymfonyMailerLoggerSubscriber.php"/>
</errorLevel>
</MixedAssignment>
<MixedMethodCall>
<errorLevel type="suppress">
<!-- The reason we do this is that the Symfony Mailer is an optional dependency -->
<file name="src/EventSubscriber/SymfonyMailerLoggerSubscriber.php"/>
</errorLevel>
</MixedMethodCall>
<MixedArgument>
<errorLevel type="suppress">
<!-- The reason we do this is that the Symfony Mailer is an optional dependency -->
<file name="src/EventSubscriber/SymfonyMailerLoggerSubscriber.php"/>
</errorLevel>
</MixedArgument>
</issueHandlers>
</psalm>

0 comments on commit a76751e

Please sign in to comment.