1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-30 04:39:00 +01:00

Fix #218 - strings passed to format always return string

This commit is contained in:
Matt Brown 2017-09-22 10:18:36 -04:00
parent ed0e9702ae
commit ee655e6f33

View File

@ -1126,7 +1126,7 @@ return [
'DateTime::__construct' => ['DateTime', 'time='=>'string', 'timezone='=>'DateTimeZone'],
'DateTime::createFromFormat' => ['DateTime', 'format'=>'string', 'time'=>'string', 'timezone='=>'DateTimeZone'],
'DateTime::diff' => ['DateInterval', 'datetime2'=>'DateTimeInterface', 'absolute='=>'bool'],
'DateTime::format' => ['string|false', 'format'=>'string'],
'DateTime::format' => ['string', 'format'=>'string'],
'DateTime::getLastErrors' => ['array'],
'DateTime::getOffset' => ['int'],
'DateTime::getTimestamp' => ['int'],
@ -1136,7 +1136,7 @@ return [
'DateTimeImmutable::createFromFormat' => ['DateTimeImmutable', 'format'=>'string', 'time'=>'string', 'timezone='=>'DateTimeZone'],
'DateTimeImmutable::createFromMutable' => ['DateTimeImmutable', 'datetime'=>'DateTime'],
'DateTimeImmutable::diff' => ['DateInterval', 'datetime2'=>'DateTimeInterface', 'absolute='=>'bool'],
'DateTimeImmutable::format' => ['string|false', 'format'=>'string'],
'DateTimeImmutable::format' => ['string', 'format'=>'string'],
'DateTimeImmutable::getLastErrors' => ['array'],
'DateTimeImmutable::getOffset' => ['int'],
'DateTimeImmutable::getTimestamp' => ['int'],
@ -1152,7 +1152,7 @@ return [
'DateTimeImmutable::__wakeup' => ['void'],
'DateTimeInterface::diff' => ['DateInterval', 'datetime2'=>'DateTimeInterface', 'absolute='=>'bool'],
'DateTimeInterface::getOffset' => ['int'],
'DateTimeInterface::format' => ['string|false', 'format'=>'string'],
'DateTimeInterface::format' => ['string', 'format'=>'string'],
'DateTimeInterface::getTimezone' => ['DateTimeZone'],
'DateTimeInterface::getTimestamp' => ['int'],
'DateTime::modify' => ['DateTime', 'modify'=>'string'],