Skip to content

Commit

Permalink
Resolve vimeo#7855 remove false from return type, in php8.0 and furth…
Browse files Browse the repository at this point in the history
…er versions there is a ValueError returned instead
  • Loading branch information
dkemper1 committed Apr 11, 2022
1 parent 916fddb commit 8e01a12
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions dictionaries/CallMap_80_delta.php
Expand Up @@ -41,10 +41,18 @@
'old' => ['string|false', 'format'=>'string'],
'new' => ['string', 'format'=>'string'],
],
'DateTime::getTimestamp' => [
'old' => ['int|false'],
'new' => ['int'],
],
'DateTimeImmutable::format' => [
'old' => ['string|false', 'format'=>'string'],
'new' => ['string', 'format'=>'string'],
],
'DateTimeImmutable::getTimestamp' => [
'old' => ['int|false'],
'new' => ['int'],
],
'DateTimeZone::listIdentifiers' => [
'old' => ['list<string>|false', 'timezoneGroup='=>'int', 'countryCode='=>'string|null'],
'new' => ['list<string>', 'timezoneGroup='=>'int', 'countryCode='=>'string|null'],
Expand Down

0 comments on commit 8e01a12

Please sign in to comment.