1
0
mirror of synced 2024-12-13 06:46:03 +03:00

Fix some CS

This commit is contained in:
Fabio B. Silva 2012-08-12 14:53:00 -03:00 committed by fabio.silva
parent a265511368
commit 27745bb87b
6 changed files with 10 additions and 15 deletions

View File

@ -2311,6 +2311,7 @@ class ClassMetadataInfo implements ClassMetadata
}
$entityResult['entityClass'] = $this->fullyQualifiedClassName($entityResult['entityClass']);
$resultMapping['entities'][$key]['entityClass'] = ltrim($entityResult['entityClass'], '\\');
$resultMapping['entities'][$key]['isSelfClass'] = $entityResult['isSelfClass'];
@ -2496,6 +2497,7 @@ class ClassMetadataInfo implements ClassMetadata
*
* @param string $callback
* @param string $eventName
* @throws \Doctrine\ORM\Mapping\MappingException
*/
public function addEntityListener($eventName, $class, $method)
{
@ -2510,8 +2512,8 @@ class ClassMetadataInfo implements ClassMetadata
}
$this->entityListeners[$eventName][] = array(
'class' => $class,
'method' => $method
'class' => $class,
'method' => $method
);
}

View File

@ -436,7 +436,7 @@ class AnnotationDriver extends AbstractAnnotationDriver
}
}
// evaluate as lifecycle callback if the listener class is not given.
// Evaluate as lifecycle callback if the listener class is not given.
if(empty($entityListenersAnnot->value)) {
/* @var $method \Doctrine\ORM\Mapping\LifecycleCallback */
foreach ($entityListenersAnnot->callbacks as $callback) {

View File

@ -567,8 +567,8 @@ class XmlDriver extends FileDriver
$eventName = $prefix . ucfirst($suffix);
$methodName = (string) $callbackElement['method'];
$listeners[] = array($eventName, $methodName);
$listeners[] = array($eventName, $methodName);
}
if (isset($listenerElement['class'])) {
@ -581,7 +581,7 @@ class XmlDriver extends FileDriver
continue;
}
// evaluate as lifecycle callback if the listener class is not given.
// Evaluate as lifecycle callback if the listener class is not given.
foreach ($listeners as $item) {
$metadata->addLifecycleCallback($item[1], $item[0]);
}

View File

@ -599,7 +599,7 @@ class YamlDriver extends FileDriver
continue;
}
// evaluate as lifecycle callback if the listener class is not given.
// Evaluate as lifecycle callback if the listener class is not given.
foreach ($listeners as $item){
$metadata->addLifecycleCallback($item[1], $item[0]);
}

View File

@ -692,10 +692,7 @@ class MappingException extends \Doctrine\ORM\ORMException
*/
public static function entityListenerClassNotFound($listenerName, $className)
{
return new self(sprintf(
'Entity Listener "%s" declared on "%s" not found.',
$listenerName, $className
));
return new self(sprintf('Entity Listener "%s" declared on "%s" not found.', $listenerName, $className));
}
/**
@ -707,10 +704,7 @@ class MappingException extends \Doctrine\ORM\ORMException
*/
public static function entityListenerMethodNotFound($listenerName, $methodName, $className)
{
return new self(sprintf(
'Entity Listener "%s" declared on "%s" has no method "%s".',
$listenerName, $className, $methodName
));
return new self(sprintf('Entity Listener "%s" declared on "%s" has no method "%s".', $listenerName, $className, $methodName));
}
/**

View File

@ -977,7 +977,6 @@ class UnitOfWork implements PropertyChangedListener
}
foreach ($entities as $entity) {
if ($hasListeners || $hasEntityListeners | $hasLifecycleCallbacks) {
$event = new LifecycleEventArgs($entity, $this->em);
}