You are here

public function ClassLoader::getPrefixes in Hook Update Deploy Tools 7

File

vendor/composer/ClassLoader.php, line 59

Class

ClassLoader
ClassLoader implements a PSR-0 class loader

Namespace

Composer\Autoload

Code

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