1
0
mirror of synced 2025-03-20 06:53:55 +03:00

DDC-3005. Revert empty line. Removed @since annotation

This commit is contained in:
Strate 2014-10-05 11:04:44 +04:00 committed by Marco Pivetta
parent 96184b9541
commit 0c8a31bf2b
2 changed files with 1 additions and 7 deletions

View File

@ -90,7 +90,7 @@ class SimpleObjectHydrator extends AbstractHydrator
if ($metaMappingDiscrColumnName = array_search($discrColumnName, $this->_rsm->metaMappings)) { if ($metaMappingDiscrColumnName = array_search($discrColumnName, $this->_rsm->metaMappings)) {
$discrColumnName = $metaMappingDiscrColumnName; $discrColumnName = $metaMappingDiscrColumnName;
} }
if ( ! isset($sqlResult[$discrColumnName])) { if ( ! isset($sqlResult[$discrColumnName])) {
throw HydrationException::missingDiscriminatorColumn($entityName, $discrColumnName, key($this->_rsm->aliasMap)); throw HydrationException::missingDiscriminatorColumn($entityName, $discrColumnName, key($this->_rsm->aliasMap));
} }

View File

@ -55,8 +55,6 @@ class HydrationCompleteHandler
* @param UnitOfWork $uow * @param UnitOfWork $uow
* @param \Doctrine\ORM\Event\ListenersInvoker $listenersInvoker * @param \Doctrine\ORM\Event\ListenersInvoker $listenersInvoker
* @param \Doctrine\ORM\EntityManager $em * @param \Doctrine\ORM\EntityManager $em
*
* @since 2.5
*/ */
public function __construct(UnitOfWork $uow, ListenersInvoker $listenersInvoker, EntityManager $em) public function __construct(UnitOfWork $uow, ListenersInvoker $listenersInvoker, EntityManager $em)
{ {
@ -68,8 +66,6 @@ class HydrationCompleteHandler
/** /**
* Method schedules invoking of postLoad entity to the very end of current hydration cycle. * Method schedules invoking of postLoad entity to the very end of current hydration cycle.
* *
* @since 2.5
*
* @param ClassMetadata $class * @param ClassMetadata $class
* @param object $entity * @param object $entity
*/ */
@ -80,7 +76,6 @@ class HydrationCompleteHandler
/** /**
* This method should me called after any hydration cycle completed. * This method should me called after any hydration cycle completed.
* @since 2.5
*/ */
public function hydrationComplete() public function hydrationComplete()
{ {
@ -89,7 +84,6 @@ class HydrationCompleteHandler
/** /**
* Method fires all deferred invocations of postLoad events * Method fires all deferred invocations of postLoad events
* @since 2.5
*/ */
private function invokeAllDeferredPostLoadEvents() private function invokeAllDeferredPostLoadEvents()
{ {