mirror of
https://github.com/danog/psalm.git
synced 2024-11-26 12:24:49 +01:00
fix wrong order of types (#5058)
This commit is contained in:
parent
ec901d2e44
commit
a9235b6ee9
@ -1774,7 +1774,7 @@ return [
|
||||
'DateTime::add' => ['static', 'interval'=>'DateInterval'],
|
||||
'DateTime::createFromFormat' => ['static|false', 'format'=>'string', 'time'=>'string', 'timezone='=>'?DateTimeZone'],
|
||||
'DateTime::createFromImmutable' => ['static', 'datetTimeImmutable'=>'DateTimeImmutable'],
|
||||
'DateTime::createFromInterface' => ['DateTimeInterface', 'self'],
|
||||
'DateTime::createFromInterface' => ['self', 'DateTimeInterface'],
|
||||
'DateTime::diff' => ['DateInterval|false', 'datetime2'=>'DateTimeInterface', 'absolute='=>'bool'],
|
||||
'DateTime::format' => ['string|false', 'format'=>'string'],
|
||||
'DateTime::getLastErrors' => ['array{warning_count:int,warnings:array<int,string>,error_count:int,errors:array<int,string>}'],
|
||||
@ -1794,7 +1794,7 @@ return [
|
||||
'DateTimeImmutable::__wakeup' => ['void'],
|
||||
'DateTimeImmutable::add' => ['static', 'interval'=>'DateInterval'],
|
||||
'DateTimeImmutable::createFromFormat' => ['static|false', 'format'=>'string', 'time'=>'string', 'timezone='=>'?DateTimeZone'],
|
||||
'DateTimeImmutable::createFromInterface' => ['DateTimeInterface', 'self'],
|
||||
'DateTimeImmutable::createFromInterface' => ['self', 'DateTimeInterface'],
|
||||
'DateTimeImmutable::createFromMutable' => ['static', 'datetime'=>'DateTime'],
|
||||
'DateTimeImmutable::diff' => ['DateInterval', 'datetime2'=>'DateTimeInterface', 'absolute='=>'bool'],
|
||||
'DateTimeImmutable::format' => ['string|false', 'format'=>'string'],
|
||||
|
@ -50,8 +50,8 @@ return [
|
||||
'curl_share_init' => ['CurlShareHandle'],
|
||||
'curl_share_setopt' => ['bool', 'sh'=>'CurlShareHandle', 'option'=>'int', 'value'=>'mixed'],
|
||||
'curl_unescape' => ['string|false', 'ch'=>'CurlShareHandle', 'string'=>'string'],
|
||||
'DateTime::createFromInterface' => ['DateTimeInterface', 'self'],
|
||||
'DateTimeImmutable::createFromInterface' => ['DateTimeInterface', 'self'],
|
||||
'DateTime::createFromInterface' => ['self', 'DateTimeInterface'],
|
||||
'DateTimeImmutable::createFromInterface' => ['self', 'DateTimeInterface'],
|
||||
'date_add' => ['DateTime', 'object'=>'DateTime', 'interval'=>'DateInterval'],
|
||||
'date_date_set' => ['DateTime', 'object'=>'DateTime', 'year'=>'int', 'month'=>'int', 'day'=>'int'],
|
||||
'date_diff' => ['DateInterval', 'obj1'=>'DateTimeInterface', 'obj2'=>'DateTimeInterface', 'absolute='=>'bool'],
|
||||
|
Loading…
Reference in New Issue
Block a user