mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 04:45:20 +01:00
Resolve #7855 remove false from return type, in php8.0 and further versions there is a ValueError returned instead
This commit is contained in:
parent
8e01a12033
commit
114aad4c23
@ -1783,7 +1783,7 @@ return [
|
||||
'DateTime::format' => ['string', 'format'=>'string'],
|
||||
'DateTime::getLastErrors' => ['array{warning_count:int,warnings:array<int,string>,error_count:int,errors:array<int,string>}'],
|
||||
'DateTime::getOffset' => ['int'],
|
||||
'DateTime::getTimestamp' => ['int|false'],
|
||||
'DateTime::getTimestamp' => ['int'],
|
||||
'DateTime::getTimezone' => ['DateTimeZone|false'],
|
||||
'DateTime::modify' => ['static|false', 'modify'=>'string'],
|
||||
'DateTime::setDate' => ['static', 'year'=>'int', 'month'=>'int', 'day'=>'int'],
|
||||
@ -1816,7 +1816,7 @@ return [
|
||||
'DateTimeInterface::diff' => ['DateInterval', 'datetime2'=>'DateTimeInterface', 'absolute='=>'bool'],
|
||||
'DateTimeInterface::format' => ['string', 'format'=>'string'],
|
||||
'DateTimeInterface::getOffset' => ['int'],
|
||||
'DateTimeInterface::getTimestamp' => ['int|false'],
|
||||
'DateTimeInterface::getTimestamp' => ['int'],
|
||||
'DateTimeInterface::getTimezone' => ['DateTimeZone|false'],
|
||||
'DateTimeZone::__construct' => ['void', 'timezone'=>'string'],
|
||||
'DateTimeZone::__set_state' => ['DateTimeZone', 'array'=>'array'],
|
||||
|
Loading…
Reference in New Issue
Block a user