1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

[skip ci ] fix: deleted stray semicolon (GH-18782)

This commit is contained in:
NickSdot
2025-06-06 20:25:19 +08:00
committed by GitHub
parent a8b7c65bca
commit 01abca9852

View File

@@ -45,7 +45,7 @@ foreach($classes as $c) {
if (strpos($c, "_") !== false) {
$err++;
$ref = new ReflectionClass($c);
if (!($ext = $ref->getExtensionName())) {;
if (!($ext = $ref->getExtensionName())) {
$ext = $ref->isInternal() ? "<internal>" : "<user>";
}
if (!array_key_exists($ext, $extensions)) {