1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00

Coding style fixes.

This commit is contained in:
Guilherme Blanco 2012-03-15 01:08:28 -04:00
parent 2a399312f7
commit c65b22eadf

View file

@ -58,8 +58,9 @@ class Configuration extends \Doctrine\DBAL\Configuration
*/ */
public function getProxyDir() public function getProxyDir()
{ {
return isset($this->_attributes['proxyDir']) ? return isset($this->_attributes['proxyDir'])
$this->_attributes['proxyDir'] : null; ? $this->_attributes['proxyDir']
: null;
} }
/** /**
@ -70,8 +71,9 @@ class Configuration extends \Doctrine\DBAL\Configuration
*/ */
public function getAutoGenerateProxyClasses() public function getAutoGenerateProxyClasses()
{ {
return isset($this->_attributes['autoGenerateProxyClasses']) ? return isset($this->_attributes['autoGenerateProxyClasses'])
$this->_attributes['autoGenerateProxyClasses'] : true; ? $this->_attributes['autoGenerateProxyClasses']
: true;
} }
/** /**
@ -92,8 +94,9 @@ class Configuration extends \Doctrine\DBAL\Configuration
*/ */
public function getProxyNamespace() public function getProxyNamespace()
{ {
return isset($this->_attributes['proxyNamespace']) ? return isset($this->_attributes['proxyNamespace'])
$this->_attributes['proxyNamespace'] : null; ? $this->_attributes['proxyNamespace']
: null;
} }
/** /**
@ -126,29 +129,38 @@ class Configuration extends \Doctrine\DBAL\Configuration
*/ */
public function newDefaultAnnotationDriver($paths = array()) public function newDefaultAnnotationDriver($paths = array())
{ {
if (version_compare(\Doctrine\Common\Version::VERSION, '2.2.0-DEV', '>=')) { switch (true) {
// Register the ORM Annotations in the AnnotationRegistry case (version_compare(\Doctrine\Common\Version::VERSION, '2.2.0-DEV', '>=')):
AnnotationRegistry::registerFile(__DIR__ . '/Mapping/Driver/DoctrineAnnotations.php'); // Register the ORM Annotations in the AnnotationRegistry
AnnotationRegistry::registerFile(__DIR__ . '/Mapping/Driver/DoctrineAnnotations.php');
$reader = new \Doctrine\Common\Annotations\SimpleAnnotationReader(); $reader = new \Doctrine\Common\Annotations\SimpleAnnotationReader();
$reader->addNamespace('Doctrine\ORM\Mapping'); $reader->addNamespace('Doctrine\ORM\Mapping');
$reader = new \Doctrine\Common\Annotations\CachedReader($reader, new ArrayCache());
} else if (version_compare(\Doctrine\Common\Version::VERSION, '2.1.0-DEV', '>=')) {
// Register the ORM Annotations in the AnnotationRegistry
AnnotationRegistry::registerFile(__DIR__ . '/Mapping/Driver/DoctrineAnnotations.php');
$reader = new AnnotationReader(); $reader = new \Doctrine\Common\Annotations\CachedReader($reader, new ArrayCache());
$reader->setDefaultAnnotationNamespace('Doctrine\ORM\Mapping\\'); break;
$reader->setIgnoreNotImportedAnnotations(true);
$reader->setEnableParsePhpImports(false); case (version_compare(\Doctrine\Common\Version::VERSION, '2.1.0-DEV', '>=')):
$reader = new \Doctrine\Common\Annotations\CachedReader( // Register the ORM Annotations in the AnnotationRegistry
new \Doctrine\Common\Annotations\IndexedReader($reader), new ArrayCache() AnnotationRegistry::registerFile(__DIR__ . '/Mapping/Driver/DoctrineAnnotations.php');
);
} else { $reader = new AnnotationReader();
$reader = new AnnotationReader(); $reader->setDefaultAnnotationNamespace('Doctrine\ORM\Mapping\\');
$reader->setDefaultAnnotationNamespace('Doctrine\ORM\Mapping\\'); $reader->setIgnoreNotImportedAnnotations(true);
$reader->setEnableParsePhpImports(false);
$reader = new \Doctrine\Common\Annotations\CachedReader(
new \Doctrine\Common\Annotations\IndexedReader($reader), new ArrayCache()
);
break;
default:
$reader = new AnnotationReader();
$reader->setDefaultAnnotationNamespace('Doctrine\ORM\Mapping\\');
break;
} }
return new AnnotationDriver($reader, (array)$paths);
return new AnnotationDriver($reader, (array) $paths);
} }
/** /**
@ -207,8 +219,9 @@ class Configuration extends \Doctrine\DBAL\Configuration
*/ */
public function getMetadataDriverImpl() public function getMetadataDriverImpl()
{ {
return isset($this->_attributes['metadataDriverImpl']) ? return isset($this->_attributes['metadataDriverImpl'])
$this->_attributes['metadataDriverImpl'] : null; ? $this->_attributes['metadataDriverImpl']
: null;
} }
/** /**
@ -218,8 +231,9 @@ class Configuration extends \Doctrine\DBAL\Configuration
*/ */
public function getQueryCacheImpl() public function getQueryCacheImpl()
{ {
return isset($this->_attributes['queryCacheImpl']) ? return isset($this->_attributes['queryCacheImpl'])
$this->_attributes['queryCacheImpl'] : null; ? $this->_attributes['queryCacheImpl']
: null;
} }
/** /**
@ -239,8 +253,9 @@ class Configuration extends \Doctrine\DBAL\Configuration
*/ */
public function getMetadataCacheImpl() public function getMetadataCacheImpl()
{ {
return isset($this->_attributes['metadataCacheImpl']) ? return isset($this->_attributes['metadataCacheImpl'])
$this->_attributes['metadataCacheImpl'] : null; ? $this->_attributes['metadataCacheImpl']
: null;
} }
/** /**
@ -275,6 +290,7 @@ class Configuration extends \Doctrine\DBAL\Configuration
if ( ! isset($this->_attributes['namedQueries'][$name])) { if ( ! isset($this->_attributes['namedQueries'][$name])) {
throw ORMException::namedQueryNotFound($name); throw ORMException::namedQueryNotFound($name);
} }
return $this->_attributes['namedQueries'][$name]; return $this->_attributes['namedQueries'][$name];
} }
@ -302,6 +318,7 @@ class Configuration extends \Doctrine\DBAL\Configuration
if ( ! isset($this->_attributes['namedNativeQueries'][$name])) { if ( ! isset($this->_attributes['namedNativeQueries'][$name])) {
throw ORMException::namedNativeQueryNotFound($name); throw ORMException::namedNativeQueryNotFound($name);
} }
return $this->_attributes['namedNativeQueries'][$name]; return $this->_attributes['namedNativeQueries'][$name];
} }
@ -314,12 +331,14 @@ class Configuration extends \Doctrine\DBAL\Configuration
*/ */
public function ensureProductionSettings() public function ensureProductionSettings()
{ {
if ( !$this->getQueryCacheImpl()) { if ( ! $this->getQueryCacheImpl()) {
throw ORMException::queryCacheNotConfigured(); throw ORMException::queryCacheNotConfigured();
} }
if ( !$this->getMetadataCacheImpl()) {
if ( ! $this->getMetadataCacheImpl()) {
throw ORMException::metadataCacheNotConfigured(); throw ORMException::metadataCacheNotConfigured();
} }
if ($this->getAutoGenerateProxyClasses()) { if ($this->getAutoGenerateProxyClasses()) {
throw ORMException::proxyClassesAlwaysRegenerating(); throw ORMException::proxyClassesAlwaysRegenerating();
} }
@ -349,8 +368,10 @@ class Configuration extends \Doctrine\DBAL\Configuration
public function getCustomStringFunction($name) public function getCustomStringFunction($name)
{ {
$name = strtolower($name); $name = strtolower($name);
return isset($this->_attributes['customStringFunctions'][$name]) ?
$this->_attributes['customStringFunctions'][$name] : null; return isset($this->_attributes['customStringFunctions'][$name])
? $this->_attributes['customStringFunctions'][$name]
: null;
} }
/** /**
@ -392,8 +413,10 @@ class Configuration extends \Doctrine\DBAL\Configuration
public function getCustomNumericFunction($name) public function getCustomNumericFunction($name)
{ {
$name = strtolower($name); $name = strtolower($name);
return isset($this->_attributes['customNumericFunctions'][$name]) ?
$this->_attributes['customNumericFunctions'][$name] : null; return isset($this->_attributes['customNumericFunctions'][$name])
? $this->_attributes['customNumericFunctions'][$name]
: null;
} }
/** /**
@ -435,8 +458,10 @@ class Configuration extends \Doctrine\DBAL\Configuration
public function getCustomDatetimeFunction($name) public function getCustomDatetimeFunction($name)
{ {
$name = strtolower($name); $name = strtolower($name);
return isset($this->_attributes['customDatetimeFunctions'][$name]) ?
$this->_attributes['customDatetimeFunctions'][$name] : null; return isset($this->_attributes['customDatetimeFunctions'][$name])
? $this->_attributes['customDatetimeFunctions'][$name]
: null;
} }
/** /**
@ -462,8 +487,9 @@ class Configuration extends \Doctrine\DBAL\Configuration
*/ */
public function getCustomHydrationMode($modeName) public function getCustomHydrationMode($modeName)
{ {
return isset($this->_attributes['customHydrationModes'][$modeName]) ? return isset($this->_attributes['customHydrationModes'][$modeName])
$this->_attributes['customHydrationModes'][$modeName] : null; ? $this->_attributes['customHydrationModes'][$modeName]
: null;
} }
/** /**
@ -492,9 +518,10 @@ class Configuration extends \Doctrine\DBAL\Configuration
*/ */
public function getClassMetadataFactoryName() public function getClassMetadataFactoryName()
{ {
if (!isset($this->_attributes['classMetadataFactoryName'])) { if ( ! isset($this->_attributes['classMetadataFactoryName'])) {
$this->_attributes['classMetadataFactoryName'] = 'Doctrine\ORM\Mapping\ClassMetadataFactory'; $this->_attributes['classMetadataFactoryName'] = 'Doctrine\ORM\Mapping\ClassMetadataFactory';
} }
return $this->_attributes['classMetadataFactoryName']; return $this->_attributes['classMetadataFactoryName'];
} }
@ -519,8 +546,9 @@ class Configuration extends \Doctrine\DBAL\Configuration
*/ */
public function getFilterClassName($name) public function getFilterClassName($name)
{ {
return isset($this->_attributes['filters'][$name]) ? return isset($this->_attributes['filters'][$name])
$this->_attributes['filters'][$name] : null; ? $this->_attributes['filters'][$name]
: null;
} }
/** /**
@ -532,10 +560,12 @@ class Configuration extends \Doctrine\DBAL\Configuration
*/ */
public function setDefaultRepositoryClassName($className) public function setDefaultRepositoryClassName($className)
{ {
if ($className != "Doctrine\ORM\EntityRepository" && $entityRepositoryClassName = 'Doctrine\ORM\EntityRepository';
!is_subclass_of($className, 'Doctrine\ORM\EntityRepository')){
if ($className !== $entityRepositoryClassName && ! is_subclass_of($className, $entityRepositoryClassName)) {
throw ORMException::invalidEntityRepository($className); throw ORMException::invalidEntityRepository($className);
} }
$this->_attributes['defaultRepositoryClassName'] = $className; $this->_attributes['defaultRepositoryClassName'] = $className;
} }
@ -547,8 +577,9 @@ class Configuration extends \Doctrine\DBAL\Configuration
*/ */
public function getDefaultRepositoryClassName() public function getDefaultRepositoryClassName()
{ {
return isset($this->_attributes['defaultRepositoryClassName']) ? return isset($this->_attributes['defaultRepositoryClassName'])
$this->_attributes['defaultRepositoryClassName'] : 'Doctrine\ORM\EntityRepository'; ? $this->_attributes['defaultRepositoryClassName']
: 'Doctrine\ORM\EntityRepository';
} }
/** /**
@ -570,9 +601,10 @@ class Configuration extends \Doctrine\DBAL\Configuration
*/ */
public function getNamingStrategy() public function getNamingStrategy()
{ {
if (!isset($this->_attributes['namingStrategy'])) { if ( ! isset($this->_attributes['namingStrategy'])) {
$this->_attributes['namingStrategy'] = new DefaultNamingStrategy(); $this->_attributes['namingStrategy'] = new DefaultNamingStrategy();
} }
return $this->_attributes['namingStrategy']; return $this->_attributes['namingStrategy'];
} }
} }