From db8f6f6be83d82c2c36fcd40a77c6a119f7682b4 Mon Sep 17 00:00:00 2001 From: Daniil Gentili Date: Tue, 11 Jan 2022 10:23:19 +0100 Subject: [PATCH] cs-fix --- src/Psalm/Internal/Analyzer/MethodComparator.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Psalm/Internal/Analyzer/MethodComparator.php b/src/Psalm/Internal/Analyzer/MethodComparator.php index 499850cc8ef..a0c3e662198 100644 --- a/src/Psalm/Internal/Analyzer/MethodComparator.php +++ b/src/Psalm/Internal/Analyzer/MethodComparator.php @@ -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) {