mirror of
https://github.com/danog/psalm.git
synced 2025-01-21 21:31:13 +01:00
Allow DateTime::getTimestamp to return false
This commit is contained in:
parent
be5a262deb
commit
7848e97f36
@ -1772,7 +1772,7 @@ return [
|
||||
'DateTime::format' => ['string|false', 'format'=>'string'],
|
||||
'DateTime::getLastErrors' => ['array'],
|
||||
'DateTime::getOffset' => ['int'],
|
||||
'DateTime::getTimestamp' => ['int'],
|
||||
'DateTime::getTimestamp' => ['int|false'],
|
||||
'DateTime::getTimezone' => ['DateTimeZone'],
|
||||
'DateTime::modify' => ['static|false', 'modify'=>'string'],
|
||||
'DateTime::setDate' => ['static', 'year'=>'int', 'month'=>'int', 'day'=>'int'],
|
||||
@ -1791,7 +1791,7 @@ return [
|
||||
'DateTimeImmutable::format' => ['string|false', 'format'=>'string'],
|
||||
'DateTimeImmutable::getLastErrors' => ['array'],
|
||||
'DateTimeImmutable::getOffset' => ['int'],
|
||||
'DateTimeImmutable::getTimestamp' => ['int'],
|
||||
'DateTimeImmutable::getTimestamp' => ['int|false'],
|
||||
'DateTimeImmutable::getTimezone' => ['DateTimeZone'],
|
||||
'DateTimeImmutable::modify' => ['static', 'modify'=>'string'],
|
||||
'DateTimeImmutable::setDate' => ['static|false', 'year'=>'int', 'month'=>'int', 'day'=>'int'],
|
||||
@ -1803,7 +1803,7 @@ return [
|
||||
'DateTimeInterface::diff' => ['DateInterval', 'datetime2'=>'DateTimeInterface', 'absolute='=>'bool'],
|
||||
'DateTimeInterface::format' => ['string', 'format'=>'string'],
|
||||
'DateTimeInterface::getOffset' => ['int'],
|
||||
'DateTimeInterface::getTimestamp' => ['int'],
|
||||
'DateTimeInterface::getTimestamp' => ['int|false'],
|
||||
'DateTimeInterface::getTimezone' => ['DateTimeZone'],
|
||||
'DateTimeZone::__construct' => ['void', 'timezone'=>'string'],
|
||||
'DateTimeZone::__set_state' => ['DateTimeZone', 'array'=>'array'],
|
||||
|
Loading…
x
Reference in New Issue
Block a user