Skip to content

Commit 9ae7517

Browse files
committed
Removed unnecessary workaround for BackedEnum
revert e97439c
1 parent 6ef434c commit 9ae7517

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/Reflection/SignatureMap/Php8SignatureMapProvider.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,6 @@ public function __construct(
6464
public function hasMethodSignature(string $className, string $methodName): bool
6565
{
6666
$lowerClassName = strtolower($className);
67-
if ($lowerClassName === 'backedenum') {
68-
return false;
69-
}
7067
if (!array_key_exists($lowerClassName, $this->map->classes)) {
7168
return $this->functionSignatureMapProvider->hasMethodSignature($className, $methodName);
7269
}

0 commit comments

Comments
 (0)