mirror of
https://github.com/danog/psalm.git
synced 2024-11-26 12:24:49 +01:00
Return type for DateTimeZone::getTransitions() (#4879)
This commit is contained in:
parent
25e022e77e
commit
e6d23d10e9
@ -1818,7 +1818,7 @@ return [
|
||||
'DateTimeZone::getLocation' => ['array|false'],
|
||||
'DateTimeZone::getName' => ['string'],
|
||||
'DateTimeZone::getOffset' => ['int|false', 'datetime'=>'DateTimeInterface'],
|
||||
'DateTimeZone::getTransitions' => ['array|false', 'timestamp_begin='=>'int', 'timestamp_end='=>'int'],
|
||||
'DateTimeZone::getTransitions' => ['list<array{ts: int, time: string, offset: int, isdst: bool, abbr: string}>|false', 'timestamp_begin='=>'int', 'timestamp_end='=>'int'],
|
||||
'DateTimeZone::listAbbreviations' => ['array<string, list<array{dst: bool, offset: int, timezone_id: string|null}>>|false'],
|
||||
'DateTimeZone::listIdentifiers' => ['list<string>|false', 'what='=>'int', 'country='=>'string'],
|
||||
'db2_autocommit' => ['mixed', 'connection'=>'resource', 'value='=>'int'],
|
||||
@ -14591,7 +14591,7 @@ return [
|
||||
'timezone_name_get' => ['string', 'object'=>'DateTimeZone'],
|
||||
'timezone_offset_get' => ['int|false', 'object'=>'DateTimeZone', 'datetime'=>'DateTimeInterface'],
|
||||
'timezone_open' => ['DateTimeZone|false', 'timezone'=>'string'],
|
||||
'timezone_transitions_get' => ['array|false', 'object'=>'DateTimeZone', 'timestampBegin='=>'int', 'timestampEnd='=>'int'],
|
||||
'timezone_transitions_get' => ['list<array{ts: int, time: string, offset: int, isdst: bool, abbr: string}>|false', 'object'=>'DateTimeZone', 'timestampBegin='=>'int', 'timestampEnd='=>'int'],
|
||||
'timezone_version_get' => ['string'],
|
||||
'tmpfile' => ['resource|false'],
|
||||
'token_get_all' => ['list<string|array{0:int,1:string,2:int}>', 'code'=>'string', 'flags='=>'int'],
|
||||
|
Loading…
Reference in New Issue
Block a user