Adding parameter to allow switching annotation reader implementation
This commit is contained in:
parent
b67140f73c
commit
245d906ebf
1 changed files with 3 additions and 2 deletions
|
@ -111,12 +111,13 @@ class Setup
|
||||||
* @param boolean $isDevMode
|
* @param boolean $isDevMode
|
||||||
* @param string $proxyDir
|
* @param string $proxyDir
|
||||||
* @param Cache $cache
|
* @param Cache $cache
|
||||||
|
* @param bool $useSimpleAnnotationReader
|
||||||
* @return Configuration
|
* @return Configuration
|
||||||
*/
|
*/
|
||||||
static public function createAnnotationMetadataConfiguration(array $paths, $isDevMode = false, $proxyDir = null, Cache $cache = null)
|
static public function createAnnotationMetadataConfiguration(array $paths, $isDevMode = false, $proxyDir = null, Cache $cache = null, $useSimpleAnnotationReader = false)
|
||||||
{
|
{
|
||||||
$config = self::createConfiguration($isDevMode, $proxyDir, $cache);
|
$config = self::createConfiguration($isDevMode, $proxyDir, $cache);
|
||||||
$config->setMetadataDriverImpl($config->newDefaultAnnotationDriver($paths));
|
$config->setMetadataDriverImpl($config->newDefaultAnnotationDriver($paths, $useSimpleAnnotationReader));
|
||||||
return $config;
|
return $config;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue