File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -907,18 +907,18 @@ public static bool xml_set_default_handler(PhpResource parser, PhpValue default_
907
907
/// <param name="parser">
908
908
/// A reference to the XML parser to set up unparsed entity declaration handler function.
909
909
/// </param>
910
- /// <param name="unparsed_entity_decl_handler ">
910
+ /// <param name="hdl ">
911
911
/// String (or array) containing the name of a function that must exist when xml_parse() is
912
912
/// called for parser.
913
913
/// </param>
914
914
/// <returns>Returns TRUE on success or FALSE on failure. </returns>
915
- public static bool SetUnparsedEntityDeclHandler ( PhpResource parser , PhpValue unparsed_entity_decl_handler )
915
+ public static bool xml_set_unparsed_entity_decl_handler ( PhpResource parser , PhpValue hdl )
916
916
{
917
917
var xmlParser = XmlParserResource . ValidResource ( parser ) ;
918
918
if ( xmlParser == null )
919
919
return false ;
920
920
921
- PhpException . FunctionNotSupported ( " xml_set_unparsed_entity_decl_handler" ) ;
921
+ PhpException . FunctionNotSupported ( nameof ( xml_set_unparsed_entity_decl_handler ) ) ;
922
922
return false ;
923
923
}
924
924
You can’t perform that action at this time.
0 commit comments