Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
danog committed Nov 26, 2024
1 parent ad9b64e commit 9af1744
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ jobs:
- "8.1"
- "8.2"
- "8.3"
- "8.4"
count: ${{ fromJson(needs.chunk-matrix.outputs.count) }}
chunk: ${{ fromJson(needs.chunk-matrix.outputs.chunks) }}

Expand Down
4 changes: 2 additions & 2 deletions dictionaries/CallMap.php
Original file line number Diff line number Diff line change
Expand Up @@ -1351,7 +1351,7 @@
'DateInterval::__construct' => ['void', 'duration'=>'string'],
'DateInterval::__set_state' => ['DateInterval', 'array'=>'array'],
'DateInterval::__wakeup' => ['void'],
'DateInterval::createFromDateString' => ['DateInterval|false', 'datetime'=>'string'],
'DateInterval::createFromDateString' => ['DateInterval', 'datetime'=>'string'],
'DateInterval::format' => ['string', 'format'=>'string'],
'DatePeriod::__construct' => ['void', 'start'=>'DateTimeInterface', 'interval'=>'DateInterval', 'recur'=>'int', 'options='=>'int'],
'DatePeriod::__construct\'1' => ['void', 'start'=>'DateTimeInterface', 'interval'=>'DateInterval', 'end'=>'DateTimeInterface', 'options='=>'int'],
Expand Down Expand Up @@ -14647,7 +14647,7 @@
'xml_parser_free' => ['bool', 'parser'=>'XMLParser'],
'xml_parser_get_option' => ['string|int', 'parser'=>'XMLParser', 'option'=>'int'],
'xml_parser_set_option' => ['bool', 'parser'=>'XMLParser', 'option'=>'int', 'value'=>'mixed'],
'xml_set_character_data_handler' => ['true', 'parser'=>'XMLParser', 'handler'=>'callable'],
'xml_set_character_data_handler' => ['true', 'parser'=>'XMLParser', 'handler'=>'callable|null'],
'xml_set_default_handler' => ['true', 'parser'=>'XMLParser', 'handler'=>'callable'],
'xml_set_element_handler' => ['true', 'parser'=>'XMLParser', 'start_handler'=>'callable', 'end_handler'=>'callable'],
'xml_set_end_namespace_decl_handler' => ['true', 'parser'=>'XMLParser', 'handler'=>'callable'],
Expand Down
4 changes: 2 additions & 2 deletions dictionaries/CallMap_80_delta.php
Original file line number Diff line number Diff line change
Expand Up @@ -2684,8 +2684,8 @@
'new' => ['bool', 'parser'=>'XMLParser', 'option'=>'int', 'value'=>'mixed'],
],
'xml_set_character_data_handler' => [
'old' => ['true', 'parser'=>'resource', 'handler'=>'callable'],
'new' => ['true', 'parser'=>'XMLParser', 'handler'=>'callable'],
'old' => ['true', 'parser'=>'resource', 'handler'=>'callable|null'],
'new' => ['true', 'parser'=>'XMLParser', 'handler'=>'callable|null'],
],
'xml_set_default_handler' => [
'old' => ['true', 'parser'=>'resource', 'handler'=>'callable'],
Expand Down
6 changes: 4 additions & 2 deletions dictionaries/CallMap_84_delta.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,12 @@
'removed' => [],
'changed' => [
'old' => [
'locale_set_default' => ['bool', 'locale'=>'string']
'locale_set_default' => ['bool', 'locale'=>'string'],
'DateInterval::createFromDateString' => ['DateInterval|false', 'datetime'=>'string'],
],
'new' => [
'locale_set_default' => ['true', 'locale'=>'string']
'locale_set_default' => ['true', 'locale'=>'string'],
'DateInterval::createFromDateString' => ['DateInterval', 'datetime'=>'string'],
]
]
];
2 changes: 1 addition & 1 deletion dictionaries/CallMap_historical.php
Original file line number Diff line number Diff line change
Expand Up @@ -15470,7 +15470,7 @@
'xml_parser_free' => ['bool', 'parser'=>'resource'],
'xml_parser_get_option' => ['string|int', 'parser'=>'resource', 'option'=>'int'],
'xml_parser_set_option' => ['bool', 'parser'=>'resource', 'option'=>'int', 'value'=>'mixed'],
'xml_set_character_data_handler' => ['true', 'parser'=>'resource', 'handler'=>'callable'],
'xml_set_character_data_handler' => ['true', 'parser'=>'resource', 'handler'=>'callable|null'],
'xml_set_default_handler' => ['true', 'parser'=>'resource', 'handler'=>'callable'],
'xml_set_element_handler' => ['true', 'parser'=>'resource', 'start_handler'=>'callable', 'end_handler'=>'callable'],
'xml_set_end_namespace_decl_handler' => ['true', 'parser'=>'resource', 'handler'=>'callable'],
Expand Down

0 comments on commit 9af1744

Please sign in to comment.