1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 04:45:20 +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 GitHub
parent 1c012caa5e
commit 0d977f7341
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;