public static function AnnotationRegistry::registerAutoloadNamespaces

Register multiple namespaces

Loading of this namespaces will be done with a PSR-0 namespace loading algorithm.

Parameters

array $namespaces:

File

drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Annotations/AnnotationRegistry.php, line 82

Class

AnnotationRegistry
AnnotationRegistry

Namespace

Doctrine\Common\Annotations

Code

public static function registerAutoloadNamespaces(array $namespaces) {
  self::$autoloadNamespaces = array_merge(self::$autoloadNamespaces, $namespaces);
}