Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3f385d4

Browse files
committed
Update types some more, refs #11500
1 parent 45368a5 commit 3f385d4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/Composer/Autoload/ClassLoader.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ class ClassLoader
5454
*/
5555
private $prefixLengthsPsr4 = array();
5656
/**
57-
* @var array<string, array<int, string>>
57+
* @var array<string, list<string>>
5858
*/
5959
private $prefixDirsPsr4 = array();
6060
/**
@@ -68,7 +68,7 @@ class ClassLoader
6868
*
6969
* Structured as array('F (first letter)' => array('Foo\Bar (full prefix)' => array('path', 'path2')))
7070
*
71-
* @var array<string, array<string, string[]>>
71+
* @var array<string, array<string, list<string>>>
7272
*/
7373
private $prefixesPsr0 = array();
7474
/**
@@ -122,7 +122,7 @@ public function getPrefixes()
122122
}
123123

124124
/**
125-
* @return array<string, array<int, string>>
125+
* @return array<string, list<string>>
126126
*/
127127
public function getPrefixesPsr4()
128128
{

0 commit comments

Comments
 (0)