Skip to content

Commit 8fed2fa

Browse files
author
Simon Bigelmayr
committed
refactor: early return
1 parent 2509a58 commit 8fed2fa

File tree

1 file changed

+14
-13
lines changed

1 file changed

+14
-13
lines changed

src/PHPStan/Rules/ThrowableClassNameRule.php

+14-13
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,23 @@ public function getNodeType(): string
2121
public function processNode(Node $node, Scope $scope): array
2222
{
2323
$className = (string) $node->name;
24-
$extendsThrowable = false;
2524

26-
if ($node->extends !== null) {
27-
$parentClass = $node->extends->toString();
28-
$extendsThrowable = is_subclass_of($parentClass, \Throwable::class) || $parentClass === \Throwable::class;
25+
if ($node->extends === null) {
26+
if (str_ends_with($className, 'Exception')) {
27+
return [
28+
RuleErrorBuilder::message(sprintf(
29+
'Class "%s" uses the suffix "Exception" but does not extend \Throwable. Consider using "Exemption" or another term.',
30+
$className
31+
))->build(),
32+
];
33+
}
34+
35+
return [];
2936
}
3037

38+
$parentClass = $node->extends->toString();
39+
$extendsThrowable = is_subclass_of($parentClass, \Throwable::class) || $parentClass === \Throwable::class;
40+
3141
if ($extendsThrowable && ! str_ends_with($className, 'Exception')) {
3242
return [
3343
RuleErrorBuilder::message(sprintf(
@@ -37,15 +47,6 @@ public function processNode(Node $node, Scope $scope): array
3747
];
3848
}
3949

40-
if (! $extendsThrowable && str_ends_with($className, 'Exception')) {
41-
return [
42-
RuleErrorBuilder::message(sprintf(
43-
'Class "%s" uses the suffix "Exception" but does not extend \Throwable. Consider using "Exemption" or another term.',
44-
$className
45-
))->build(),
46-
];
47-
}
48-
4950
return [];
5051
}
5152
}

0 commit comments

Comments
 (0)