Skip to content

Commit

Permalink
cs-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
danog committed Jan 11, 2022
1 parent cacac2c commit db8f6f6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/Psalm/Internal/Analyzer/MethodComparator.php
Expand Up @@ -890,7 +890,10 @@ private static function compareMethodSignatureReturnTypes(
: (!$implementer_signature_return_type
&& $guide_signature_return_type->isMixed()
? false
: UnionTypeComparator::isContainedByInPhp($implementer_signature_return_type, $guide_signature_return_type)
: UnionTypeComparator::isContainedByInPhp(
$implementer_signature_return_type,
$guide_signature_return_type
)
);

if (!$is_contained_by) {
Expand Down

0 comments on commit db8f6f6

Please sign in to comment.