-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #35 from mmasiukevich/develop
merge branches
- Loading branch information
Showing
42 changed files
with
2,088 additions
and
254 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
Oops, something went wrong.