Showing 4,939 of 4,939 total issues
Avoid too many return
statements within this method. Open
Open
return self::toShortString($node->children['name']);
Avoid too many return
statements within this method. Open
Open
return $this->compareYieldFromAgainstDeclaredType($node, $method, $context, $type_list, $yield_from_type);
Avoid too many return
statements within this method. Open
Open
return $parent_node->children['var'] === $node;
Avoid too many return
statements within this method. Open
Open
return;
Avoid too many return
statements within this method. Open
Open
return "${expr_str}{{$dim_str}}";
Avoid too many return
statements within this method. Open
Open
return sprintf(
"(%s = %s)",
self::toShortString($node->children['var']),
self::toShortString($node->children['expr'])
);
Avoid too many return
statements within this method. Open
Open
return sprintf(
'%s->%s',
self::toShortString($node->children['expr']),
$prop_node instanceof Node ? '{' . self::toShortString($prop_node) . '}' : (string)$prop_node
);
Avoid too many return
statements within this method. Open
Open
return sprintf(
'(%s)(%s)',
// @phan-suppress-next-line PhanAccessClassConstantInternal
PostOrderAnalysisVisitor::AST_CAST_FLAGS_LOOKUP[$node->flags] ?? 'unknown',
self::toShortString($node->children['expr'])
Avoid too many return
statements within this method. Open
Open
return $type->withRealTypeSet(UnionType::typeSetFromString(ConditionVisitor::DEFAULTS_FOR_ACCESS_TYPE[$access_type]));
Avoid too many return
statements within this method. Open
Open
return (new AssignmentVisitor(
$this->code_base,
// We clone the original context to avoid affecting the original context for the elseif.
// AssignmentVisitor modifies the provided context in place.
//
Avoid too many return
statements within this method. Open
Open
return null;
Avoid too many return
statements within this method. Open
Open
return IntType::instance(false)->asRealUnionType();
Avoid too many return
statements within this method. Open
Open
return $probably_int_or_float_type;
Avoid too many return
statements within this method. Open
Open
return self::computeTriggerErrorStatusCodeForConstant($node->children['args']->children[1] ?? null);
Avoid too many return
statements within this method. Open
Open
return $unknown_type;
Avoid too many return
statements within this method. Open
Open
return $type->isNullableLabeled() ? MixedType::instance(true) : NonNullMixedType::instance(false);
Avoid too many return
statements within this method. Open
Open
return $type;
Avoid too many return
statements within this method. Open
Open
return;
Avoid too many return
statements within this method. Open
Open
return;
Avoid too many return
statements within this method. Open
Open
return '(' . implode(', ', \array_map('self::toShortString', $node->children)) . ')';