ClassLoader::getPrefixes()


Source

File: vendor/composer/ClassLoader.php

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

        return array();
    }