Composer\Autoload

ClassLoader::getPrefixes()publicWPSCache 1.0

Метод класса: ClassLoader{}

Хуков нет.

Возвращает

Массив<Строку,. list<string>>

Использование

$ClassLoader = new ClassLoader();
$ClassLoader->getPrefixes();

Код ClassLoader::getPrefixes() WPSCache 1.12.0

public function getPrefixes()
{
    if (!empty($this->prefixesPsr0)) {
        return call_user_func_array('array_merge', array_values($this->prefixesPsr0));
    }

    return array();
}