Skip to content

Commit aad2c24

Browse files
committed
update composer
1 parent 4356bb2 commit aad2c24

26 files changed

+939
-324
lines changed

composer.lock

+40-17
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/composer/ClassLoader.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@
3737
*
3838
* @author Fabien Potencier <[email protected]>
3939
* @author Jordi Boggiano <[email protected]>
40-
* @see http://www.php-fig.org/psr/psr-0/
41-
* @see http://www.php-fig.org/psr/psr-4/
40+
* @see https://www.php-fig.org/psr/psr-0/
41+
* @see https://www.php-fig.org/psr/psr-4/
4242
*/
4343
class ClassLoader
4444
{
@@ -60,7 +60,7 @@ class ClassLoader
6060
public function getPrefixes()
6161
{
6262
if (!empty($this->prefixesPsr0)) {
63-
return call_user_func_array('array_merge', $this->prefixesPsr0);
63+
return call_user_func_array('array_merge', array_values($this->prefixesPsr0));
6464
}
6565

6666
return array();

0 commit comments

Comments
 (0)