1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-26 20:34:47 +01:00

Fix Ds\Sequence::toArray() return type (#4763)

This commit is contained in:
Jáchym Toušek 2020-12-03 15:28:26 +01:00 committed by Daniil Gentili
parent 8990f1ec95
commit fcf2bc3831
Signed by: danog
GPG Key ID: 8C1BE3B34B230CA7

View File

@ -605,7 +605,7 @@ interface Sequence extends Collection, ArrayAccess
public function copy(): Sequence;
/**
* @return array<int, TValue>
* @return list<TValue>
* @psalm-mutation-free
*/
public function toArray(): array;