Skip to content

Commit 0fe10f0

Browse files
committed
chore: fix coding standards
Signed-off-by: azjezz <[email protected]>
1 parent dff80ef commit 0fe10f0

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/EventHandler/Iter/Count/FunctionReturnTypeProvider.php

+4-2
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,10 @@ public static function getFunctionReturnType(FunctionReturnTypeProviderEvent $ev
6868
return Type::getInt();
6969
}
7070

71-
if (($array_argument_type instanceof Type\Atomic\TArray) && $array_argument_type->type_params[0]->isNever() && $array_argument_type->type_params[1]->isNever()) {
72-
return Type::getInt(false, 0);
71+
if ($array_argument_type instanceof Type\Atomic\TArray) {
72+
if ($array_argument_type->type_params[0]->isNever() && $array_argument_type->type_params[1]->isNever()) {
73+
return Type::getInt(false, 0);
74+
}
7375
}
7476

7577
return Type::getInt();

0 commit comments

Comments
 (0)