Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
danog committed Nov 27, 2024
1 parent 744844f commit a05ac99
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dictionaries/CallMap.php
Original file line number Diff line number Diff line change
Expand Up @@ -78321,7 +78321,7 @@
array (
0 => 'true',
'parser' => 'XMLParser',
'start_handler' => 'callable',
'start_handler' => 'callable|null',
'end_handler' => 'callable',
),
'xml_set_end_namespace_decl_handler' =>
Expand Down Expand Up @@ -78352,13 +78352,13 @@
array (
0 => 'true',
'parser' => 'XMLParser',
'handler' => 'callable',
'handler' => 'callable|null',
),
'xml_set_start_namespace_decl_handler' =>
array (
0 => 'true',
'parser' => 'XMLParser',
'handler' => 'callable',
'handler' => 'callable|null',
),
'xml_set_unparsed_entity_decl_handler' =>
array (
Expand Down
9 changes: 9 additions & 0 deletions dictionaries/CallMap_84_delta.php
Original file line number Diff line number Diff line change
Expand Up @@ -1720,5 +1720,14 @@
'bucket' => 'StreamBucket',
),
),

'xml_set_element_handler' => [
'old' => ['true', 'parser'=>'XMLParser', 'start_handler'=>'callable', 'end_handler'=>'callable'],
'new' => ['true', 'parser'=>'XMLParser', 'start_handler'=>'callable|null', 'end_handler'=>'callable'],
],
'xml_set_start_namespace_decl_handler' => [
'old' => ['true', 'parser'=>'XMLParser', 'handler'=>'callable'],
'new' => ['true', 'parser'=>'XMLParser', 'handler'=>'callable|null'],
],
),
);

0 comments on commit a05ac99

Please sign in to comment.