1
0
Fork 0
php-language-server/tests/Validation/cases/memberAccess3.php

14 lines
297 B
PHP
Raw Normal View History

<?php
namespace MyNamespace;
class A {
public static function getInitializer(ClassLoader $loader)
{
return \Closure::bind(function () use ($loader) {
$loader->prefixesPsr0 = ComposerStaticInitIncludePath::$prefixesPsr0;
}, null, ClassLoader::class);
}
}