Skip to content

Commit

Permalink
Fixing wrong class name causing fatal
Browse files Browse the repository at this point in the history
  • Loading branch information
Ocramius committed May 11, 2012
1 parent dfcd4b2 commit 836806f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Module.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ public function init(Manager $moduleManager)
}

/**
* Registers
* Registers annotations required for the Doctrine AnnotationReader
*
* @param ModuleEvent $e
* @param ModuleEvent $e
* @throws RuntimeException
*/
public function registerAnnotations(ModuleEvent $e)
Expand Down Expand Up @@ -94,7 +94,7 @@ public function getAutoloaderConfig()
if (realpath(__DIR__ . '/vendor/doctrine-orm/lib')) {
return array(
'Zend\Loader\StandardAutoloader' => array(
Zend\Loader\StandardAutoloader::LOAD_NS => array(
StandardAutoloader::LOAD_NS => array(
__NAMESPACE__ => __DIR__ . '/src/' . __NAMESPACE__,
__NAMESPACE__ . 'Test' => __DIR__ . '/tests/' . __NAMESPACE__ . 'Test',
'Doctrine\ORM' => __DIR__ . '/vendor/doctrine-orm/lib/Doctrine/ORM',
Expand Down

0 comments on commit 836806f

Please sign in to comment.