mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
[skip ci ] fix: deleted stray semicolon (GH-18782)
This commit is contained in:
parent
a8b7c65bca
commit
01abca9852
1 changed files with 1 additions and 1 deletions
|
@ -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)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue