You are here

protected property RegistryAutoloadSearcher::$formatMap in Registry Autoload 7

The namespace $map maps the namespaces provided to subdirectories.

Type: array

File

./registry_autoload.module, line 146
Main module for enabling core registry to support namespaced files.

Class

RegistryAutoloadSearcher
RegistryAutoloadSearcher helper class.

Code

protected $formatMap = array(
  'PSR-0' => 'lib',
  'PSR-4' => 'src',
  'PHPUnit' => 'tests/src',
  'PSR-0/absolute' => '',
  'PSR-4/absolute' => '',
  'PHPUnit/absolute' => '',
);