Skip to content

Commit

Permalink
Merge pull request #35 from mmasiukevich/develop
Browse files Browse the repository at this point in the history
merge branches
  • Loading branch information
mmasiukevich authored Sep 3, 2018
2 parents 57feef1 + 3ccd40e commit 49f5cb7
Show file tree
Hide file tree
Showing 42 changed files with 2,088 additions and 254 deletions.
103 changes: 52 additions & 51 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

49 changes: 27 additions & 22 deletions psalm.xml
Original file line number Diff line number Diff line change
@@ -1,38 +1,43 @@
<?xml version="1.0"?>
<psalm
totallyTyped="false"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="https://getpsalm.org/schema/config"
xsi:schemaLocation="https://getpsalm.org/schema/config file:///home/desperado/var/www/Desperado/sagas/vendor/vimeo/psalm/config.xsd"
totallyTyped="false"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="https://getpsalm.org/schema/config"
xsi:schemaLocation="https://getpsalm.org/schema/config file:///home/desperado/var/www/Desperado/sagas/vendor/vimeo/psalm/config.xsd"
>
<projectFiles>
<directory name="src" />
<directory name="src"/>
<ignoreFiles>
<directory name="vendor"/>
<!-- Storage for AMQPEnvelope::getheaders is not user-defined -->
<file name="src/Transport/AmqpExt/AmqpConsumer.php"/>
</ignoreFiles>
</projectFiles>

<issueHandlers>
<LessSpecificReturnType errorLevel="info" />
<LessSpecificReturnType errorLevel="info"/>

<!-- level 3 issues - slightly lazy code writing, but provably low false-negatives -->
<DeprecatedMethod errorLevel="info" />
<DeprecatedProperty errorLevel="info" />
<DeprecatedClass errorLevel="info" />
<DeprecatedMethod errorLevel="info"/>
<DeprecatedProperty errorLevel="info"/>
<DeprecatedClass errorLevel="info"/>

<MissingClosureReturnType errorLevel="info" />
<MissingReturnType errorLevel="info" />
<MissingPropertyType errorLevel="info" />
<InvalidDocblock errorLevel="info" />
<MisplacedRequiredParam errorLevel="info" />
<MissingClosureReturnType errorLevel="info"/>
<MissingReturnType errorLevel="info"/>
<MissingPropertyType errorLevel="info"/>
<InvalidDocblock errorLevel="info"/>
<MisplacedRequiredParam errorLevel="info"/>

<PropertyNotSetInConstructor errorLevel="suppress" />
<MissingConstructor errorLevel="info" />
<MissingClosureParamType errorLevel="info" />
<MissingParamType errorLevel="info" />
<PropertyNotSetInConstructor errorLevel="suppress"/>
<MissingConstructor errorLevel="info"/>
<MissingClosureParamType errorLevel="info"/>
<MissingParamType errorLevel="info"/>

<DocblockTypeContradiction errorLevel="info" />
<RedundantConditionGivenDocblockType errorLevel="info" />
<DocblockTypeContradiction errorLevel="info"/>
<RedundantConditionGivenDocblockType errorLevel="info"/>

<UnresolvableInclude errorLevel="info" />
<UnresolvableInclude errorLevel="info"/>

<RawObjectIteration errorLevel="info" />
<RawObjectIteration errorLevel="info"/>
</issueHandlers>
</psalm>
Loading

0 comments on commit 49f5cb7

Please sign in to comment.