Skip to content

Commit

Permalink
Fix parsing namespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
ben221199 committed Aug 8, 2024
1 parent f9b8136 commit fc39043
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/EPPElementImpl.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public static function __createElementNS(Document $doc, ?string $ns, string $lna
if($className==null){
return null;
}
return new $className($doc,$lname,$prefix);
return new $className($doc,$lname,$ns,$prefix);
}

private static function __getElements(): array{
Expand Down

0 comments on commit fc39043

Please sign in to comment.