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

Documentation (docblock) fixes.

This commit is contained in:
Benjamin Morel 2012-12-01 16:28:06 +00:00
parent 4bb6ff637c
commit dacdd6cd89
15 changed files with 779 additions and 213 deletions

View file

@ -107,7 +107,7 @@ abstract class AbstractQuery
/** /**
* Initializes a new instance of a class derived from <tt>AbstractQuery</tt>. * Initializes a new instance of a class derived from <tt>AbstractQuery</tt>.
* *
* @param \Doctrine\ORM\EntityManager $entityManager * @param \Doctrine\ORM\EntityManager $em
*/ */
public function __construct(EntityManager $em) public function __construct(EntityManager $em)
{ {
@ -208,11 +208,11 @@ abstract class AbstractQuery
/** /**
* Sets a query parameter. * Sets a query parameter.
* *
* @param string|integer $key The parameter position or name. * @param string|int $key The parameter position or name.
* @param mixed $value The parameter value. * @param mixed $value The parameter value.
* @param string $type The parameter type. If specified, the given value will be run through * @param string|null $type The parameter type. If specified, the given value will be run through
* the type conversion of this type. This is usually not needed for * the type conversion of this type. This is usually not needed for
* strings and numeric types. * strings and numeric types.
* *
* @return \Doctrine\ORM\AbstractQuery This query instance. * @return \Doctrine\ORM\AbstractQuery This query instance.
*/ */
@ -241,10 +241,13 @@ abstract class AbstractQuery
} }
/** /**
* Process an individual parameter value * Processes an individual parameter value.
* *
* @param mixed $value * @param mixed $value
*
* @return array * @return array
*
* @throws ORMInvalidArgumentException
*/ */
public function processParameterValue($value) public function processParameterValue($value)
{ {
@ -272,6 +275,7 @@ abstract class AbstractQuery
* Sets the ResultSetMapping that should be used for hydration. * Sets the ResultSetMapping that should be used for hydration.
* *
* @param \Doctrine\ORM\Query\ResultSetMapping $rsm * @param \Doctrine\ORM\Query\ResultSetMapping $rsm
*
* @return \Doctrine\ORM\AbstractQuery * @return \Doctrine\ORM\AbstractQuery
*/ */
public function setResultSetMapping(Query\ResultSetMapping $rsm) public function setResultSetMapping(Query\ResultSetMapping $rsm)
@ -300,6 +304,7 @@ abstract class AbstractQuery
* $query->setHydrationCacheProfile(new QueryCacheProfile($lifetime, $resultKey)); * $query->setHydrationCacheProfile(new QueryCacheProfile($lifetime, $resultKey));
* *
* @param \Doctrine\DBAL\Cache\QueryCacheProfile $profile * @param \Doctrine\DBAL\Cache\QueryCacheProfile $profile
*
* @return \Doctrine\ORM\AbstractQuery * @return \Doctrine\ORM\AbstractQuery
*/ */
public function setHydrationCacheProfile(QueryCacheProfile $profile = null) public function setHydrationCacheProfile(QueryCacheProfile $profile = null)
@ -329,6 +334,7 @@ abstract class AbstractQuery
* result cache driver is used from the configuration. * result cache driver is used from the configuration.
* *
* @param \Doctrine\DBAL\Cache\QueryCacheProfile $profile * @param \Doctrine\DBAL\Cache\QueryCacheProfile $profile
*
* @return \Doctrine\ORM\AbstractQuery * @return \Doctrine\ORM\AbstractQuery
*/ */
public function setResultCacheProfile(QueryCacheProfile $profile = null) public function setResultCacheProfile(QueryCacheProfile $profile = null)
@ -346,8 +352,11 @@ abstract class AbstractQuery
/** /**
* Defines a cache driver to be used for caching result sets and implictly enables caching. * Defines a cache driver to be used for caching result sets and implictly enables caching.
* *
* @param \Doctrine\Common\Cache\Cache $driver Cache driver * @param \Doctrine\Common\Cache\Cache|null $resultCacheDriver Cache driver
*
* @return \Doctrine\ORM\AbstractQuery * @return \Doctrine\ORM\AbstractQuery
*
* @throws ORMException
*/ */
public function setResultCacheDriver($resultCacheDriver = null) public function setResultCacheDriver($resultCacheDriver = null)
{ {
@ -366,6 +375,7 @@ abstract class AbstractQuery
* Returns the cache driver used for caching result sets. * Returns the cache driver used for caching result sets.
* *
* @deprecated * @deprecated
*
* @return \Doctrine\Common\Cache\Cache Cache driver * @return \Doctrine\Common\Cache\Cache Cache driver
*/ */
public function getResultCacheDriver() public function getResultCacheDriver()
@ -383,7 +393,8 @@ abstract class AbstractQuery
* *
* @param boolean $bool * @param boolean $bool
* @param integer $lifetime * @param integer $lifetime
* @param string $resultCacheId * @param string $resultCacheId
*
* @return \Doctrine\ORM\AbstractQuery This query instance. * @return \Doctrine\ORM\AbstractQuery This query instance.
*/ */
public function useResultCache($bool, $lifetime = null, $resultCacheId = null) public function useResultCache($bool, $lifetime = null, $resultCacheId = null)
@ -404,6 +415,7 @@ abstract class AbstractQuery
* Defines how long the result cache will be active before expire. * Defines how long the result cache will be active before expire.
* *
* @param integer $lifetime How long the cache entry is valid. * @param integer $lifetime How long the cache entry is valid.
*
* @return \Doctrine\ORM\AbstractQuery This query instance. * @return \Doctrine\ORM\AbstractQuery This query instance.
*/ */
public function setResultCacheLifetime($lifetime) public function setResultCacheLifetime($lifetime)
@ -421,6 +433,7 @@ abstract class AbstractQuery
* Retrieves the lifetime of resultset cache. * Retrieves the lifetime of resultset cache.
* *
* @deprecated * @deprecated
*
* @return integer * @return integer
*/ */
public function getResultCacheLifetime() public function getResultCacheLifetime()
@ -432,6 +445,7 @@ abstract class AbstractQuery
* Defines if the result cache is active or not. * Defines if the result cache is active or not.
* *
* @param boolean $expire Whether or not to force resultset cache expiration. * @param boolean $expire Whether or not to force resultset cache expiration.
*
* @return \Doctrine\ORM\AbstractQuery This query instance. * @return \Doctrine\ORM\AbstractQuery This query instance.
*/ */
public function expireResultCache($expire = true) public function expireResultCache($expire = true)
@ -464,9 +478,10 @@ abstract class AbstractQuery
* *
* $fetchMode can be one of ClassMetadata::FETCH_EAGER or ClassMetadata::FETCH_LAZY * $fetchMode can be one of ClassMetadata::FETCH_EAGER or ClassMetadata::FETCH_LAZY
* *
* @param string $class * @param string $class
* @param string $assocName * @param string $assocName
* @param int $fetchMode * @param int $fetchMode
*
* @return AbstractQuery * @return AbstractQuery
*/ */
public function setFetchMode($class, $assocName, $fetchMode) public function setFetchMode($class, $assocName, $fetchMode)
@ -485,6 +500,7 @@ abstract class AbstractQuery
* *
* @param integer $hydrationMode Doctrine processing mode to be used during hydration process. * @param integer $hydrationMode Doctrine processing mode to be used during hydration process.
* One of the Query::HYDRATE_* constants. * One of the Query::HYDRATE_* constants.
*
* @return \Doctrine\ORM\AbstractQuery This query instance. * @return \Doctrine\ORM\AbstractQuery This query instance.
*/ */
public function setHydrationMode($hydrationMode) public function setHydrationMode($hydrationMode)
@ -509,6 +525,8 @@ abstract class AbstractQuery
* *
* Alias for execute(null, $hydrationMode = HYDRATE_OBJECT). * Alias for execute(null, $hydrationMode = HYDRATE_OBJECT).
* *
* @param int $hydrationMode
*
* @return array * @return array
*/ */
public function getResult($hydrationMode = self::HYDRATE_OBJECT) public function getResult($hydrationMode = self::HYDRATE_OBJECT)
@ -543,9 +561,11 @@ abstract class AbstractQuery
/** /**
* Get exactly one result or null. * Get exactly one result or null.
* *
* @throws NonUniqueResultException
* @param int $hydrationMode * @param int $hydrationMode
*
* @return mixed * @return mixed
*
* @throws NonUniqueResultException
*/ */
public function getOneOrNullResult($hydrationMode = null) public function getOneOrNullResult($hydrationMode = null)
{ {
@ -575,9 +595,11 @@ abstract class AbstractQuery
* If there is no result, a NoResultException is thrown. * If there is no result, a NoResultException is thrown.
* *
* @param integer $hydrationMode * @param integer $hydrationMode
*
* @return mixed * @return mixed
*
* @throws NonUniqueResultException If the query result is not unique. * @throws NonUniqueResultException If the query result is not unique.
* @throws NoResultException If the query returned no result. * @throws NoResultException If the query returned no result.
*/ */
public function getSingleResult($hydrationMode = null) public function getSingleResult($hydrationMode = null)
{ {
@ -604,6 +626,7 @@ abstract class AbstractQuery
* Alias for getSingleResult(HYDRATE_SINGLE_SCALAR). * Alias for getSingleResult(HYDRATE_SINGLE_SCALAR).
* *
* @return mixed * @return mixed
*
* @throws QueryException If the query result is not unique. * @throws QueryException If the query result is not unique.
*/ */
public function getSingleScalarResult() public function getSingleScalarResult()
@ -614,8 +637,9 @@ abstract class AbstractQuery
/** /**
* Sets a query hint. If the hint name is not recognized, it is silently ignored. * Sets a query hint. If the hint name is not recognized, it is silently ignored.
* *
* @param string $name The name of the hint. * @param string $name The name of the hint.
* @param mixed $value The value of the hint. * @param mixed $value The value of the hint.
*
* @return \Doctrine\ORM\AbstractQuery * @return \Doctrine\ORM\AbstractQuery
*/ */
public function setHint($name, $value) public function setHint($name, $value)
@ -629,6 +653,7 @@ abstract class AbstractQuery
* Gets the value of a query hint. If the hint name is not recognized, FALSE is returned. * Gets the value of a query hint. If the hint name is not recognized, FALSE is returned.
* *
* @param string $name The name of the hint. * @param string $name The name of the hint.
*
* @return mixed The value of the hint or FALSE, if the hint name is not recognized. * @return mixed The value of the hint or FALSE, if the hint name is not recognized.
*/ */
public function getHint($name) public function getHint($name)
@ -650,8 +675,9 @@ abstract class AbstractQuery
* Executes the query and returns an IterableResult that can be used to incrementally * Executes the query and returns an IterableResult that can be used to incrementally
* iterate over the result. * iterate over the result.
* *
* @param \Doctrine\Common\Collections\ArrayCollection|array $parameters The query parameters. * @param ArrayCollection|array|null $parameters The query parameters.
* @param integer $hydrationMode The hydration mode to use. * @param integer|null $hydrationMode The hydration mode to use.
*
* @return \Doctrine\ORM\Internal\Hydration\IterableResult * @return \Doctrine\ORM\Internal\Hydration\IterableResult
*/ */
public function iterate($parameters = null, $hydrationMode = null) public function iterate($parameters = null, $hydrationMode = null)
@ -674,8 +700,9 @@ abstract class AbstractQuery
/** /**
* Executes the query. * Executes the query.
* *
* @param \Doctrine\Common\Collections\ArrayCollection|array $parameters Query parameters. * @param ArrayCollection|array|null $parameters Query parameters.
* @param integer $hydrationMode Processing mode to be used during the hydration process. * @param integer|null $hydrationMode Processing mode to be used during the hydration process.
*
* @return mixed * @return mixed
*/ */
public function execute($parameters = null, $hydrationMode = null) public function execute($parameters = null, $hydrationMode = null)
@ -760,6 +787,7 @@ abstract class AbstractQuery
* generated for you. * generated for you.
* *
* @param string $id * @param string $id
*
* @return \Doctrine\ORM\AbstractQuery This query instance. * @return \Doctrine\ORM\AbstractQuery This query instance.
*/ */
public function setResultCacheId($id) public function setResultCacheId($id)
@ -775,6 +803,7 @@ abstract class AbstractQuery
* Get the result cache id to use to store the result set cache entry if set. * Get the result cache id to use to store the result set cache entry if set.
* *
* @deprecated * @deprecated
*
* @return string * @return string
*/ */
public function getResultCacheId() public function getResultCacheId()

View file

@ -49,6 +49,8 @@ class Configuration extends \Doctrine\DBAL\Configuration
* Sets the directory where Doctrine generates any necessary proxy class files. * Sets the directory where Doctrine generates any necessary proxy class files.
* *
* @param string $dir * @param string $dir
*
* @return void
*/ */
public function setProxyDir($dir) public function setProxyDir($dir)
{ {
@ -58,7 +60,7 @@ class Configuration extends \Doctrine\DBAL\Configuration
/** /**
* Gets the directory where Doctrine generates any necessary proxy class files. * Gets the directory where Doctrine generates any necessary proxy class files.
* *
* @return string * @return string|null
*/ */
public function getProxyDir() public function getProxyDir()
{ {
@ -85,6 +87,8 @@ class Configuration extends \Doctrine\DBAL\Configuration
* during each script execution. * during each script execution.
* *
* @param boolean $bool * @param boolean $bool
*
* @return void
*/ */
public function setAutoGenerateProxyClasses($bool) public function setAutoGenerateProxyClasses($bool)
{ {
@ -94,7 +98,7 @@ class Configuration extends \Doctrine\DBAL\Configuration
/** /**
* Gets the namespace where proxy classes reside. * Gets the namespace where proxy classes reside.
* *
* @return string * @return string|null
*/ */
public function getProxyNamespace() public function getProxyNamespace()
{ {
@ -107,6 +111,8 @@ class Configuration extends \Doctrine\DBAL\Configuration
* Sets the namespace where proxy classes reside. * Sets the namespace where proxy classes reside.
* *
* @param string $ns * @param string $ns
*
* @return void
*/ */
public function setProxyNamespace($ns) public function setProxyNamespace($ns)
{ {
@ -117,6 +123,9 @@ class Configuration extends \Doctrine\DBAL\Configuration
* Sets the cache driver implementation that is used for metadata caching. * Sets the cache driver implementation that is used for metadata caching.
* *
* @param MappingDriver $driverImpl * @param MappingDriver $driverImpl
*
* @return void
*
* @todo Force parameter to be a Closure to ensure lazy evaluation * @todo Force parameter to be a Closure to ensure lazy evaluation
* (as soon as a metadata cache is in effect, the driver never needs to initialize). * (as soon as a metadata cache is in effect, the driver never needs to initialize).
*/ */
@ -130,7 +139,8 @@ class Configuration extends \Doctrine\DBAL\Configuration
* is true, the notation `@Entity` will work, otherwise, the notation `@ORM\Entity` will be supported. * is true, the notation `@Entity` will work, otherwise, the notation `@ORM\Entity` will be supported.
* *
* @param array $paths * @param array $paths
* @param bool $useSimpleAnnotationReader * @param bool $useSimpleAnnotationReader
*
* @return AnnotationDriver * @return AnnotationDriver
*/ */
public function newDefaultAnnotationDriver($paths = array(), $useSimpleAnnotationReader = true) public function newDefaultAnnotationDriver($paths = array(), $useSimpleAnnotationReader = true)
@ -157,6 +167,8 @@ class Configuration extends \Doctrine\DBAL\Configuration
* *
* @param string $alias * @param string $alias
* @param string $namespace * @param string $namespace
*
* @return void
*/ */
public function addEntityNamespace($alias, $namespace) public function addEntityNamespace($alias, $namespace)
{ {
@ -167,8 +179,10 @@ class Configuration extends \Doctrine\DBAL\Configuration
* Resolves a registered namespace alias to the full namespace. * Resolves a registered namespace alias to the full namespace.
* *
* @param string $entityNamespaceAlias * @param string $entityNamespaceAlias
* @throws ORMException *
* @return string * @return string
*
* @throws ORMException
*/ */
public function getEntityNamespace($entityNamespaceAlias) public function getEntityNamespace($entityNamespaceAlias)
{ {
@ -180,9 +194,11 @@ class Configuration extends \Doctrine\DBAL\Configuration
} }
/** /**
* Set the entity alias map * Sets the entity alias map.
* *
* @param array $entityNamespaces * @param array $entityNamespaces
*
* @return void
*/ */
public function setEntityNamespaces(array $entityNamespaces) public function setEntityNamespaces(array $entityNamespaces)
{ {
@ -202,8 +218,9 @@ class Configuration extends \Doctrine\DBAL\Configuration
/** /**
* Gets the cache driver implementation that is used for the mapping metadata. * Gets the cache driver implementation that is used for the mapping metadata.
* *
* @return MappingDriver|null
*
* @throws ORMException * @throws ORMException
* @return MappingDriver
*/ */
public function getMetadataDriverImpl() public function getMetadataDriverImpl()
{ {
@ -215,7 +232,7 @@ class Configuration extends \Doctrine\DBAL\Configuration
/** /**
* Gets the cache driver implementation that is used for the query cache (SQL cache). * Gets the cache driver implementation that is used for the query cache (SQL cache).
* *
* @return \Doctrine\Common\Cache\Cache * @return \Doctrine\Common\Cache\Cache|null
*/ */
public function getQueryCacheImpl() public function getQueryCacheImpl()
{ {
@ -228,6 +245,8 @@ class Configuration extends \Doctrine\DBAL\Configuration
* Sets the cache driver implementation that is used for the query cache (SQL cache). * Sets the cache driver implementation that is used for the query cache (SQL cache).
* *
* @param \Doctrine\Common\Cache\Cache $cacheImpl * @param \Doctrine\Common\Cache\Cache $cacheImpl
*
* @return void
*/ */
public function setQueryCacheImpl(Cache $cacheImpl) public function setQueryCacheImpl(Cache $cacheImpl)
{ {
@ -237,7 +256,7 @@ class Configuration extends \Doctrine\DBAL\Configuration
/** /**
* Gets the cache driver implementation that is used for the hydration cache (SQL cache). * Gets the cache driver implementation that is used for the hydration cache (SQL cache).
* *
* @return \Doctrine\Common\Cache\Cache * @return \Doctrine\Common\Cache\Cache|null
*/ */
public function getHydrationCacheImpl() public function getHydrationCacheImpl()
{ {
@ -250,6 +269,8 @@ class Configuration extends \Doctrine\DBAL\Configuration
* Sets the cache driver implementation that is used for the hydration cache (SQL cache). * Sets the cache driver implementation that is used for the hydration cache (SQL cache).
* *
* @param \Doctrine\Common\Cache\Cache $cacheImpl * @param \Doctrine\Common\Cache\Cache $cacheImpl
*
* @return void
*/ */
public function setHydrationCacheImpl(Cache $cacheImpl) public function setHydrationCacheImpl(Cache $cacheImpl)
{ {
@ -259,7 +280,7 @@ class Configuration extends \Doctrine\DBAL\Configuration
/** /**
* Gets the cache driver implementation that is used for metadata caching. * Gets the cache driver implementation that is used for metadata caching.
* *
* @return \Doctrine\Common\Cache\Cache * @return \Doctrine\Common\Cache\Cache|null
*/ */
public function getMetadataCacheImpl() public function getMetadataCacheImpl()
{ {
@ -272,6 +293,8 @@ class Configuration extends \Doctrine\DBAL\Configuration
* Sets the cache driver implementation that is used for metadata caching. * Sets the cache driver implementation that is used for metadata caching.
* *
* @param \Doctrine\Common\Cache\Cache $cacheImpl * @param \Doctrine\Common\Cache\Cache $cacheImpl
*
* @return void
*/ */
public function setMetadataCacheImpl(Cache $cacheImpl) public function setMetadataCacheImpl(Cache $cacheImpl)
{ {
@ -282,7 +305,9 @@ class Configuration extends \Doctrine\DBAL\Configuration
* Adds a named DQL query to the configuration. * Adds a named DQL query to the configuration.
* *
* @param string $name The name of the query. * @param string $name The name of the query.
* @param string $dql The DQL query string. * @param string $dql The DQL query string.
*
* @return void
*/ */
public function addNamedQuery($name, $dql) public function addNamedQuery($name, $dql)
{ {
@ -293,8 +318,10 @@ class Configuration extends \Doctrine\DBAL\Configuration
* Gets a previously registered named DQL query. * Gets a previously registered named DQL query.
* *
* @param string $name The name of the query. * @param string $name The name of the query.
* @throws ORMException *
* @return string The DQL query. * @return string The DQL query.
*
* @throws ORMException
*/ */
public function getNamedQuery($name) public function getNamedQuery($name)
{ {
@ -311,6 +338,8 @@ class Configuration extends \Doctrine\DBAL\Configuration
* @param string $name The name of the query. * @param string $name The name of the query.
* @param string $sql The native SQL query string. * @param string $sql The native SQL query string.
* @param Query\ResultSetMapping $rsm The ResultSetMapping used for the results of the SQL query. * @param Query\ResultSetMapping $rsm The ResultSetMapping used for the results of the SQL query.
*
* @return void
*/ */
public function addNamedNativeQuery($name, $sql, Query\ResultSetMapping $rsm) public function addNamedNativeQuery($name, $sql, Query\ResultSetMapping $rsm)
{ {
@ -320,10 +349,12 @@ class Configuration extends \Doctrine\DBAL\Configuration
/** /**
* Gets the components of a previously registered named native query. * Gets the components of a previously registered named native query.
* *
* @param string $name The name of the query. * @param string $name The name of the query.
*
* @return array A tuple with the first element being the SQL string and the second
* element being the ResultSetMapping.
*
* @throws ORMException * @throws ORMException
* @return array A tuple with the first element being the SQL string and the second
* element being the ResultSetMapping.
*/ */
public function getNamedNativeQuery($name) public function getNamedNativeQuery($name)
{ {
@ -338,6 +369,8 @@ class Configuration extends \Doctrine\DBAL\Configuration
* Ensures that this Configuration instance contains settings that are * Ensures that this Configuration instance contains settings that are
* suitable for a production environment. * suitable for a production environment.
* *
* @return void
*
* @throws ORMException If a configuration setting has a value that is not * @throws ORMException If a configuration setting has a value that is not
* suitable for a production environment. * suitable for a production environment.
*/ */
@ -365,6 +398,9 @@ class Configuration extends \Doctrine\DBAL\Configuration
* *
* @param string $name * @param string $name
* @param string $className * @param string $className
*
* @return void
*
* @throws ORMException * @throws ORMException
*/ */
public function addCustomStringFunction($name, $className) public function addCustomStringFunction($name, $className)
@ -380,7 +416,8 @@ class Configuration extends \Doctrine\DBAL\Configuration
* Gets the implementation class name of a registered custom string DQL function. * Gets the implementation class name of a registered custom string DQL function.
* *
* @param string $name * @param string $name
* @return string *
* @return string|null
*/ */
public function getCustomStringFunction($name) public function getCustomStringFunction($name)
{ {
@ -400,6 +437,8 @@ class Configuration extends \Doctrine\DBAL\Configuration
* Any previously added string functions are discarded. * Any previously added string functions are discarded.
* *
* @param array $functions The map of custom DQL string functions. * @param array $functions The map of custom DQL string functions.
*
* @return void
*/ */
public function setCustomStringFunctions(array $functions) public function setCustomStringFunctions(array $functions)
{ {
@ -417,6 +456,9 @@ class Configuration extends \Doctrine\DBAL\Configuration
* *
* @param string $name * @param string $name
* @param string $className * @param string $className
*
* @return void
*
* @throws ORMException * @throws ORMException
*/ */
public function addCustomNumericFunction($name, $className) public function addCustomNumericFunction($name, $className)
@ -432,7 +474,8 @@ class Configuration extends \Doctrine\DBAL\Configuration
* Gets the implementation class name of a registered custom numeric DQL function. * Gets the implementation class name of a registered custom numeric DQL function.
* *
* @param string $name * @param string $name
* @return string *
* @return string|null
*/ */
public function getCustomNumericFunction($name) public function getCustomNumericFunction($name)
{ {
@ -452,6 +495,8 @@ class Configuration extends \Doctrine\DBAL\Configuration
* Any previously added numeric functions are discarded. * Any previously added numeric functions are discarded.
* *
* @param array $functions The map of custom DQL numeric functions. * @param array $functions The map of custom DQL numeric functions.
*
* @return void
*/ */
public function setCustomNumericFunctions(array $functions) public function setCustomNumericFunctions(array $functions)
{ {
@ -469,6 +514,9 @@ class Configuration extends \Doctrine\DBAL\Configuration
* *
* @param string $name * @param string $name
* @param string $className * @param string $className
*
* @return void
*
* @throws ORMException * @throws ORMException
*/ */
public function addCustomDatetimeFunction($name, $className) public function addCustomDatetimeFunction($name, $className)
@ -484,7 +532,8 @@ class Configuration extends \Doctrine\DBAL\Configuration
* Gets the implementation class name of a registered custom date/time DQL function. * Gets the implementation class name of a registered custom date/time DQL function.
* *
* @param string $name * @param string $name
* @return string *
* @return string|null
*/ */
public function getCustomDatetimeFunction($name) public function getCustomDatetimeFunction($name)
{ {
@ -504,6 +553,8 @@ class Configuration extends \Doctrine\DBAL\Configuration
* Any previously added date/time functions are discarded. * Any previously added date/time functions are discarded.
* *
* @param array $functions The map of custom DQL date/time functions. * @param array $functions The map of custom DQL date/time functions.
*
* @return void
*/ */
public function setCustomDatetimeFunctions(array $functions) public function setCustomDatetimeFunctions(array $functions)
{ {
@ -515,7 +566,9 @@ class Configuration extends \Doctrine\DBAL\Configuration
/** /**
* Set the custom hydrator modes in one pass. * Set the custom hydrator modes in one pass.
* *
* @param array An array of ($modeName => $hydrator) * @param array $modes An array of ($modeName => $hydrator).
*
* @return void
*/ */
public function setCustomHydrationModes($modes) public function setCustomHydrationModes($modes)
{ {
@ -530,7 +583,8 @@ class Configuration extends \Doctrine\DBAL\Configuration
* Get the hydrator class for the given hydration mode name. * Get the hydrator class for the given hydration mode name.
* *
* @param string $modeName The hydration mode name. * @param string $modeName The hydration mode name.
* @return string $hydrator The hydrator class name. *
* @return string|null The hydrator class name.
*/ */
public function getCustomHydrationMode($modeName) public function getCustomHydrationMode($modeName)
{ {
@ -544,6 +598,8 @@ class Configuration extends \Doctrine\DBAL\Configuration
* *
* @param string $modeName The hydration mode name. * @param string $modeName The hydration mode name.
* @param string $hydrator The hydrator class name. * @param string $hydrator The hydrator class name.
*
* @return void
*/ */
public function addCustomHydrationMode($modeName, $hydrator) public function addCustomHydrationMode($modeName, $hydrator)
{ {
@ -554,6 +610,8 @@ class Configuration extends \Doctrine\DBAL\Configuration
* Set a class metadata factory. * Set a class metadata factory.
* *
* @param string $cmfName * @param string $cmfName
*
* @return void
*/ */
public function setClassMetadataFactoryName($cmfName) public function setClassMetadataFactoryName($cmfName)
{ {
@ -575,9 +633,10 @@ class Configuration extends \Doctrine\DBAL\Configuration
/** /**
* Add a filter to the list of possible filters. * Add a filter to the list of possible filters.
* *
* @param string $name The name of the filter. * @param string $name The name of the filter.
* @param string|Query\Filter\SQLFilter $filter The filter class name or an * @param string|Query\Filter\SQLFilter $filter The filter class name or an SQLFilter instance.
* SQLFilter instance. *
* @return void
* *
* @throws \InvalidArgumentException If the filter is an object and it doesn't * @throws \InvalidArgumentException If the filter is an object and it doesn't
* extend the Query\Filter\SQLFilter class. * extend the Query\Filter\SQLFilter class.
@ -599,8 +658,8 @@ class Configuration extends \Doctrine\DBAL\Configuration
* *
* @param string $name The name of the filter. * @param string $name The name of the filter.
* *
* @return string|Query\Filter\SQLFilter The class name of the filter, an * @return null|string|Query\Filter\SQLFilter The class name of the filter, an
* SQLFilter instance or null of it is not defined. * SQLFilter instance or null of it is not defined.
*/ */
public function getFilter($name) public function getFilter($name)
{ {
@ -613,7 +672,11 @@ class Configuration extends \Doctrine\DBAL\Configuration
* Set default repository class. * Set default repository class.
* *
* @since 2.2 * @since 2.2
*
* @param string $className * @param string $className
*
* @return void
*
* @throws ORMException If not is a \Doctrine\Common\Persistence\ObjectRepository * @throws ORMException If not is a \Doctrine\Common\Persistence\ObjectRepository
*/ */
public function setDefaultRepositoryClassName($className) public function setDefaultRepositoryClassName($className)
@ -631,6 +694,7 @@ class Configuration extends \Doctrine\DBAL\Configuration
* Get default repository class. * Get default repository class.
* *
* @since 2.2 * @since 2.2
*
* @return string * @return string
*/ */
public function getDefaultRepositoryClassName() public function getDefaultRepositoryClassName()
@ -644,7 +708,10 @@ class Configuration extends \Doctrine\DBAL\Configuration
* Set naming strategy. * Set naming strategy.
* *
* @since 2.3 * @since 2.3
*
* @param NamingStrategy $namingStrategy * @param NamingStrategy $namingStrategy
*
* @return void
*/ */
public function setNamingStrategy(NamingStrategy $namingStrategy) public function setNamingStrategy(NamingStrategy $namingStrategy)
{ {
@ -655,6 +722,7 @@ class Configuration extends \Doctrine\DBAL\Configuration
* Get naming strategy.. * Get naming strategy..
* *
* @since 2.3 * @since 2.3
*
* @return NamingStrategy * @return NamingStrategy
*/ */
public function getNamingStrategy() public function getNamingStrategy()
@ -670,7 +738,10 @@ class Configuration extends \Doctrine\DBAL\Configuration
* Set quote strategy. * Set quote strategy.
* *
* @since 2.3 * @since 2.3
*
* @param \Doctrine\ORM\Mapping\QuoteStrategy $quoteStrategy * @param \Doctrine\ORM\Mapping\QuoteStrategy $quoteStrategy
*
* @return void
*/ */
public function setQuoteStrategy(QuoteStrategy $quoteStrategy) public function setQuoteStrategy(QuoteStrategy $quoteStrategy)
{ {
@ -681,6 +752,7 @@ class Configuration extends \Doctrine\DBAL\Configuration
* Get quote strategy. * Get quote strategy.
* *
* @since 2.3 * @since 2.3
*
* @return \Doctrine\ORM\Mapping\QuoteStrategy * @return \Doctrine\ORM\Mapping\QuoteStrategy
*/ */
public function getQuoteStrategy() public function getQuoteStrategy()

View file

@ -123,8 +123,8 @@ class EntityManager implements ObjectManager
* Creates a new EntityManager that operates on the given database connection * Creates a new EntityManager that operates on the given database connection
* and uses the given Configuration and EventManager implementations. * and uses the given Configuration and EventManager implementations.
* *
* @param \Doctrine\DBAL\Connection $conn * @param \Doctrine\DBAL\Connection $conn
* @param \Doctrine\ORM\Configuration $config * @param \Doctrine\ORM\Configuration $config
* @param \Doctrine\Common\EventManager $eventManager * @param \Doctrine\Common\EventManager $eventManager
*/ */
protected function __construct(Connection $conn, Configuration $config, EventManager $eventManager) protected function __construct(Connection $conn, Configuration $config, EventManager $eventManager)
@ -193,6 +193,8 @@ class EntityManager implements ObjectManager
/** /**
* Starts a transaction on the underlying database connection. * Starts a transaction on the underlying database connection.
*
* @return void
*/ */
public function beginTransaction() public function beginTransaction()
{ {
@ -210,7 +212,8 @@ class EntityManager implements ObjectManager
* the transaction is rolled back, the EntityManager closed and the exception re-thrown. * the transaction is rolled back, the EntityManager closed and the exception re-thrown.
* *
* @param callable $func The function to execute transactionally. * @param callable $func The function to execute transactionally.
* @return mixed Returns the non-empty value returned from the closure or true instead *
* @return mixed The non-empty value returned from the closure or true instead.
*/ */
public function transactional($func) public function transactional($func)
{ {
@ -237,6 +240,8 @@ class EntityManager implements ObjectManager
/** /**
* Commits a transaction on the underlying database connection. * Commits a transaction on the underlying database connection.
*
* @return void
*/ */
public function commit() public function commit()
{ {
@ -245,6 +250,8 @@ class EntityManager implements ObjectManager
/** /**
* Performs a rollback on the underlying database connection. * Performs a rollback on the underlying database connection.
*
* @return void
*/ */
public function rollback() public function rollback()
{ {
@ -262,6 +269,7 @@ class EntityManager implements ObjectManager
* sales:PriceRequest * sales:PriceRequest
* *
* @return \Doctrine\ORM\Mapping\ClassMetadata * @return \Doctrine\ORM\Mapping\ClassMetadata
*
* @internal Performance-sensitive method. * @internal Performance-sensitive method.
*/ */
public function getClassMetadata($className) public function getClassMetadata($className)
@ -273,6 +281,7 @@ class EntityManager implements ObjectManager
* Creates a new Query object. * Creates a new Query object.
* *
* @param string $dql The DQL string. * @param string $dql The DQL string.
*
* @return \Doctrine\ORM\Query * @return \Doctrine\ORM\Query
*/ */
public function createQuery($dql = "") public function createQuery($dql = "")
@ -290,6 +299,7 @@ class EntityManager implements ObjectManager
* Creates a Query from a named query. * Creates a Query from a named query.
* *
* @param string $name * @param string $name
*
* @return \Doctrine\ORM\Query * @return \Doctrine\ORM\Query
*/ */
public function createNamedQuery($name) public function createNamedQuery($name)
@ -300,8 +310,9 @@ class EntityManager implements ObjectManager
/** /**
* Creates a native SQL query. * Creates a native SQL query.
* *
* @param string $sql * @param string $sql
* @param ResultSetMapping $rsm The ResultSetMapping to use. * @param ResultSetMapping $rsm The ResultSetMapping to use.
*
* @return NativeQuery * @return NativeQuery
*/ */
public function createNativeQuery($sql, ResultSetMapping $rsm) public function createNativeQuery($sql, ResultSetMapping $rsm)
@ -318,6 +329,7 @@ class EntityManager implements ObjectManager
* Creates a NativeQuery from a named native query. * Creates a NativeQuery from a named native query.
* *
* @param string $name * @param string $name
*
* @return \Doctrine\ORM\NativeQuery * @return \Doctrine\ORM\NativeQuery
*/ */
public function createNamedNativeQuery($name) public function createNamedNativeQuery($name)
@ -330,7 +342,7 @@ class EntityManager implements ObjectManager
/** /**
* Create a QueryBuilder instance * Create a QueryBuilder instance
* *
* @return QueryBuilder $qb * @return QueryBuilder
*/ */
public function createQueryBuilder() public function createQueryBuilder()
{ {
@ -346,6 +358,7 @@ class EntityManager implements ObjectManager
* the cascade-persist semantics + scheduled inserts/removals are synchronized. * the cascade-persist semantics + scheduled inserts/removals are synchronized.
* *
* @param object $entity * @param object $entity
*
* @throws \Doctrine\ORM\OptimisticLockException If a version check on an entity that * @throws \Doctrine\ORM\OptimisticLockException If a version check on an entity that
* makes use of optimistic locking fails. * makes use of optimistic locking fails.
*/ */
@ -359,12 +372,17 @@ class EntityManager implements ObjectManager
/** /**
* Finds an Entity by its identifier. * Finds an Entity by its identifier.
* *
* @param string $entityName * @param string $entityName
* @param mixed $id * @param mixed $id
* @param integer $lockMode * @param integer $lockMode
* @param integer $lockVersion * @param integer $lockVersion
* *
* @return object * @return object
*
* @throws OptimisticLockException
* @throws ORMInvalidArgumentException
* @throws TransactionRequiredException
* @throws ORMException
*/ */
public function find($entityName, $id, $lockMode = LockMode::NONE, $lockVersion = null) public function find($entityName, $id, $lockMode = LockMode::NONE, $lockVersion = null)
{ {
@ -446,8 +464,11 @@ class EntityManager implements ObjectManager
* without actually loading it, if the entity is not yet loaded. * without actually loading it, if the entity is not yet loaded.
* *
* @param string $entityName The name of the entity type. * @param string $entityName The name of the entity type.
* @param mixed $id The entity identifier. * @param mixed $id The entity identifier.
*
* @return object The entity reference. * @return object The entity reference.
*
* @throws ORMException
*/ */
public function getReference($entityName, $id) public function getReference($entityName, $id)
{ {
@ -503,7 +524,8 @@ class EntityManager implements ObjectManager
* never be loaded in the first place. * never be loaded in the first place.
* *
* @param string $entityName The name of the entity type. * @param string $entityName The name of the entity type.
* @param mixed $identifier The entity identifier. * @param mixed $identifier The entity identifier.
*
* @return object The (partial) entity reference. * @return object The (partial) entity reference.
*/ */
public function getPartialReference($entityName, $identifier) public function getPartialReference($entityName, $identifier)
@ -533,7 +555,9 @@ class EntityManager implements ObjectManager
* Clears the EntityManager. All entities that are currently managed * Clears the EntityManager. All entities that are currently managed
* by this EntityManager become detached. * by this EntityManager become detached.
* *
* @param string $entityName if given, only entities of this type will get detached * @param string|null $entityName if given, only entities of this type will get detached
*
* @return void
*/ */
public function clear($entityName = null) public function clear($entityName = null)
{ {
@ -544,6 +568,8 @@ class EntityManager implements ObjectManager
* Closes the EntityManager. All entities that are currently managed * Closes the EntityManager. All entities that are currently managed
* by this EntityManager become detached. The EntityManager may no longer * by this EntityManager become detached. The EntityManager may no longer
* be used after it is closed. * be used after it is closed.
*
* @return void
*/ */
public function close() public function close()
{ {
@ -561,7 +587,11 @@ class EntityManager implements ObjectManager
* NOTE: The persist operation always considers entities that are not yet known to * NOTE: The persist operation always considers entities that are not yet known to
* this EntityManager as NEW. Do not pass detached entities to the persist operation. * this EntityManager as NEW. Do not pass detached entities to the persist operation.
* *
* @param object $object The instance to make managed and persistent. * @param object $entity The instance to make managed and persistent.
*
* @return void
*
* @throws ORMInvalidArgumentException
*/ */
public function persist($entity) public function persist($entity)
{ {
@ -581,6 +611,10 @@ class EntityManager implements ObjectManager
* or as a result of the flush operation. * or as a result of the flush operation.
* *
* @param object $entity The entity instance to remove. * @param object $entity The entity instance to remove.
*
* @return void
*
* @throws ORMInvalidArgumentException
*/ */
public function remove($entity) public function remove($entity)
{ {
@ -598,6 +632,10 @@ class EntityManager implements ObjectManager
* overriding any local changes that have not yet been persisted. * overriding any local changes that have not yet been persisted.
* *
* @param object $entity The entity to refresh. * @param object $entity The entity to refresh.
*
* @return void
*
* @throws ORMInvalidArgumentException
*/ */
public function refresh($entity) public function refresh($entity)
{ {
@ -618,6 +656,10 @@ class EntityManager implements ObjectManager
* reference it. * reference it.
* *
* @param object $entity The entity to detach. * @param object $entity The entity to detach.
*
* @return void
*
* @throws ORMInvalidArgumentException
*/ */
public function detach($entity) public function detach($entity)
{ {
@ -634,7 +676,10 @@ class EntityManager implements ObjectManager
* The entity passed to merge will not become associated/managed with this EntityManager. * The entity passed to merge will not become associated/managed with this EntityManager.
* *
* @param object $entity The detached entity to merge into the persistence context. * @param object $entity The detached entity to merge into the persistence context.
*
* @return object The managed copy of the entity. * @return object The managed copy of the entity.
*
* @throws ORMInvalidArgumentException
*/ */
public function merge($entity) public function merge($entity)
{ {
@ -650,8 +695,13 @@ class EntityManager implements ObjectManager
/** /**
* Creates a copy of the given entity. Can create a shallow or a deep copy. * Creates a copy of the given entity. Can create a shallow or a deep copy.
* *
* @param object $entity The entity to copy. * @param object $entity The entity to copy.
* @return object The new entity. * @param boolean $deep FALSE for a shallow copy, TRUE for a deep copy.
*
* @return object The new entity.
*
* @throws \BadMethodCallException
*
* @todo Implementation need. This is necessary since $e2 = clone $e1; throws an E_FATAL when access anything on $e: * @todo Implementation need. This is necessary since $e2 = clone $e1; throws an E_FATAL when access anything on $e:
* Fatal error: Maximum function nesting level of '100' reached, aborting! * Fatal error: Maximum function nesting level of '100' reached, aborting!
*/ */
@ -663,9 +713,12 @@ class EntityManager implements ObjectManager
/** /**
* Acquire a lock on the given entity. * Acquire a lock on the given entity.
* *
* @param object $entity * @param object $entity
* @param int $lockMode * @param int $lockMode
* @param int $lockVersion * @param int|null $lockVersion
*
* @return void
*
* @throws OptimisticLockException * @throws OptimisticLockException
* @throws PessimisticLockException * @throws PessimisticLockException
*/ */
@ -678,6 +731,7 @@ class EntityManager implements ObjectManager
* Gets the repository for an entity class. * Gets the repository for an entity class.
* *
* @param string $entityName The name of the entity. * @param string $entityName The name of the entity.
*
* @return EntityRepository The repository class. * @return EntityRepository The repository class.
*/ */
public function getRepository($entityName) public function getRepository($entityName)
@ -706,6 +760,7 @@ class EntityManager implements ObjectManager
* Determines whether an entity instance is managed in this EntityManager. * Determines whether an entity instance is managed in this EntityManager.
* *
* @param object $entity * @param object $entity
*
* @return boolean TRUE if this EntityManager currently manages the given entity, FALSE otherwise. * @return boolean TRUE if this EntityManager currently manages the given entity, FALSE otherwise.
*/ */
public function contains($entity) public function contains($entity)
@ -738,6 +793,8 @@ class EntityManager implements ObjectManager
/** /**
* Throws an exception if the EntityManager is closed or currently not active. * Throws an exception if the EntityManager is closed or currently not active.
* *
* @return void
*
* @throws ORMException If the EntityManager is closed. * @throws ORMException If the EntityManager is closed.
*/ */
private function errorIfClosed() private function errorIfClosed()
@ -774,6 +831,7 @@ class EntityManager implements ObjectManager
* selectively iterate over the result. * selectively iterate over the result.
* *
* @param int $hydrationMode * @param int $hydrationMode
*
* @return \Doctrine\ORM\Internal\Hydration\AbstractHydrator * @return \Doctrine\ORM\Internal\Hydration\AbstractHydrator
*/ */
public function getHydrator($hydrationMode) public function getHydrator($hydrationMode)
@ -788,8 +846,11 @@ class EntityManager implements ObjectManager
/** /**
* Create a new instance for the given hydration mode. * Create a new instance for the given hydration mode.
* *
* @param int $hydrationMode * @param int $hydrationMode
*
* @return \Doctrine\ORM\Internal\Hydration\AbstractHydrator * @return \Doctrine\ORM\Internal\Hydration\AbstractHydrator
*
* @throws ORMException
*/ */
public function newHydrator($hydrationMode) public function newHydrator($hydrationMode)
{ {
@ -834,6 +895,8 @@ class EntityManager implements ObjectManager
* This method is a no-op for other objects * This method is a no-op for other objects
* *
* @param object $obj * @param object $obj
*
* @return void
*/ */
public function initializeObject($obj) public function initializeObject($obj)
{ {
@ -843,11 +906,14 @@ class EntityManager implements ObjectManager
/** /**
* Factory method to create EntityManager instances. * Factory method to create EntityManager instances.
* *
* @param mixed $conn An array with the connection parameters or an existing * @param mixed $conn An array with the connection parameters or an existing Connection instance.
* Connection instance. * @param Configuration $config The Configuration instance to use.
* @param Configuration $config The Configuration instance to use. * @param EventManager $eventManager The EventManager instance to use.
* @param EventManager $eventManager The EventManager instance to use. *
* @return EntityManager The created EntityManager. * @return EntityManager The created EntityManager.
*
* @throws \InvalidArgumentException
* @throws ORMException
*/ */
public static function create($conn, Configuration $config, EventManager $eventManager = null) public static function create($conn, Configuration $config, EventManager $eventManager = null)
{ {
@ -902,7 +968,7 @@ class EntityManager implements ObjectManager
/** /**
* Checks whether the Entity Manager has filters. * Checks whether the Entity Manager has filters.
* *
* @return True, if the EM has a filter collection. * @return boolean True, if the EM has a filter collection.
*/ */
public function hasFilters() public function hasFilters()
{ {

View file

@ -61,8 +61,8 @@ class EntityRepository implements ObjectRepository, Selectable
/** /**
* Initializes a new <tt>EntityRepository</tt>. * Initializes a new <tt>EntityRepository</tt>.
* *
* @param EntityManager $em The EntityManager to use. * @param EntityManager $em The EntityManager to use.
* @param Mapping\ClassMetadata $classMetadata The class descriptor. * @param Mapping\ClassMetadata $class The class descriptor.
*/ */
public function __construct($em, Mapping\ClassMetadata $class) public function __construct($em, Mapping\ClassMetadata $class)
{ {
@ -72,10 +72,11 @@ class EntityRepository implements ObjectRepository, Selectable
} }
/** /**
* Create a new QueryBuilder instance that is prepopulated for this entity name * Creates a new QueryBuilder instance that is prepopulated for this entity name.
* *
* @param string $alias * @param string $alias
* @return QueryBuilder $qb *
* @return QueryBuilder
*/ */
public function createQueryBuilder($alias) public function createQueryBuilder($alias)
{ {
@ -85,11 +86,12 @@ class EntityRepository implements ObjectRepository, Selectable
} }
/** /**
* Create a new result set mapping builder for this entity. * Creates a new result set mapping builder for this entity.
* *
* The column naming strategy is "INCREMENT". * The column naming strategy is "INCREMENT".
* *
* @param string $alias * @param string $alias
*
* @return ResultSetMappingBuilder * @return ResultSetMappingBuilder
*/ */
public function createResultSetMappingBuilder($alias) public function createResultSetMappingBuilder($alias)
@ -101,9 +103,10 @@ class EntityRepository implements ObjectRepository, Selectable
} }
/** /**
* Create a new Query instance based on a predefined metadata named query. * Creates a new Query instance based on a predefined metadata named query.
* *
* @param string $queryName * @param string $queryName
*
* @return Query * @return Query
*/ */
public function createNamedQuery($queryName) public function createNamedQuery($queryName)
@ -115,6 +118,7 @@ class EntityRepository implements ObjectRepository, Selectable
* Creates a native SQL query. * Creates a native SQL query.
* *
* @param string $queryName * @param string $queryName
*
* @return NativeQuery * @return NativeQuery
*/ */
public function createNativeNamedQuery($queryName) public function createNativeNamedQuery($queryName)
@ -128,6 +132,8 @@ class EntityRepository implements ObjectRepository, Selectable
/** /**
* Clears the repository, causing all managed entities to become detached. * Clears the repository, causing all managed entities to become detached.
*
* @return void
*/ */
public function clear() public function clear()
{ {
@ -137,9 +143,9 @@ class EntityRepository implements ObjectRepository, Selectable
/** /**
* Finds an entity by its primary key / identifier. * Finds an entity by its primary key / identifier.
* *
* @param mixed $id The identifier. * @param mixed $id The identifier.
* @param integer $lockMode * @param int $lockMode The lock mode.
* @param integer $lockVersion * @param int|null $lockVersion The lock version.
* *
* @return object The entity. * @return object The entity.
*/ */
@ -161,10 +167,11 @@ class EntityRepository implements ObjectRepository, Selectable
/** /**
* Finds entities by a set of criteria. * Finds entities by a set of criteria.
* *
* @param array $criteria * @param array $criteria
* @param array|null $orderBy * @param array|null $orderBy
* @param int|null $limit * @param int|null $limit
* @param int|null $offset * @param int|null $offset
*
* @return array The objects. * @return array The objects.
*/ */
public function findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null) public function findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
@ -179,6 +186,7 @@ class EntityRepository implements ObjectRepository, Selectable
* *
* @param array $criteria * @param array $criteria
* @param array|null $orderBy * @param array|null $orderBy
*
* @return object * @return object
*/ */
public function findOneBy(array $criteria, array $orderBy = null) public function findOneBy(array $criteria, array $orderBy = null)
@ -191,8 +199,13 @@ class EntityRepository implements ObjectRepository, Selectable
/** /**
* Adds support for magic finders. * Adds support for magic finders.
* *
* @param string $method
* @param array $arguments
*
* @return array|object The found entity/entities. * @return array|object The found entity/entities.
* @throws BadMethodCallException If the method called is an invalid find* method *
* @throws ORMException
* @throws \BadMethodCallException If the method called is an invalid find* method
* or no find* method at all and therefore an invalid * or no find* method at all and therefore an invalid
* method call. * method call.
*/ */
@ -291,4 +304,3 @@ class EntityRepository implements ObjectRepository, Selectable
return new ArrayCollection($persister->loadCriteria($criteria)); return new ArrayCollection($persister->loadCriteria($criteria));
} }
} }

View file

@ -33,6 +33,7 @@ final class NativeQuery extends AbstractQuery
* Sets the SQL of the query. * Sets the SQL of the query.
* *
* @param string $sql * @param string $sql
*
* @return NativeQuery This query instance. * @return NativeQuery This query instance.
*/ */
public function setSQL($sql) public function setSQL($sql)
@ -46,6 +47,7 @@ final class NativeQuery extends AbstractQuery
* Gets the SQL query. * Gets the SQL query.
* *
* @return mixed The built SQL query or an array of all SQL queries. * @return mixed The built SQL query or an array of all SQL queries.
*
* @override * @override
*/ */
public function getSQL() public function getSQL()

View file

@ -29,22 +29,41 @@ use Exception;
*/ */
class ORMException extends Exception class ORMException extends Exception
{ {
/**
* @return ORMException
*/
public static function missingMappingDriverImpl() public static function missingMappingDriverImpl()
{ {
return new self("It's a requirement to specify a Metadata Driver and pass it ". return new self("It's a requirement to specify a Metadata Driver and pass it ".
"to Doctrine\\ORM\\Configuration::setMetadataDriverImpl()."); "to Doctrine\\ORM\\Configuration::setMetadataDriverImpl().");
} }
/**
* @param string $queryName
*
* @return ORMException
*/
public static function namedQueryNotFound($queryName) public static function namedQueryNotFound($queryName)
{ {
return new self('Could not find a named query by the name "' . $queryName . '"'); return new self('Could not find a named query by the name "' . $queryName . '"');
} }
/**
* @param string $nativeQueryName
*
* @return ORMException
*/
public static function namedNativeQueryNotFound($nativeQueryName) public static function namedNativeQueryNotFound($nativeQueryName)
{ {
return new self('Could not find a named native query by the name "' . $nativeQueryName . '"'); return new self('Could not find a named native query by the name "' . $nativeQueryName . '"');
} }
/**
* @param object $entity
* @param object $relatedEntity
*
* @return ORMException
*/
public static function entityMissingForeignAssignedId($entity, $relatedEntity) public static function entityMissingForeignAssignedId($entity, $relatedEntity)
{ {
return new self( return new self(
@ -56,6 +75,12 @@ class ORMException extends Exception
); );
} }
/**
* @param object $entity
* @param string $field
*
* @return ORMException
*/
public static function entityMissingAssignedIdForField($entity, $field) public static function entityMissingAssignedIdForField($entity, $field)
{ {
return new self("Entity of type " . get_class($entity) . " is missing an assigned ID for field '" . $field . "'. " . return new self("Entity of type " . get_class($entity) . " is missing an assigned ID for field '" . $field . "'. " .
@ -65,6 +90,11 @@ class ORMException extends Exception
); );
} }
/**
* @param string $field
*
* @return ORMException
*/
public static function unrecognizedField($field) public static function unrecognizedField($field)
{ {
return new self("Unrecognized field: $field"); return new self("Unrecognized field: $field");
@ -73,37 +103,67 @@ class ORMException extends Exception
/** /**
* @param string $className * @param string $className
* @param string $field * @param string $field
*
* @return ORMException
*/ */
public static function invalidOrientation($className, $field) public static function invalidOrientation($className, $field)
{ {
return new self("Invalid order by orientation specified for " . $className . "#" . $field); return new self("Invalid order by orientation specified for " . $className . "#" . $field);
} }
/**
* @param string $mode
*
* @return ORMException
*/
public static function invalidFlushMode($mode) public static function invalidFlushMode($mode)
{ {
return new self("'$mode' is an invalid flush mode."); return new self("'$mode' is an invalid flush mode.");
} }
/**
* @return ORMException
*/
public static function entityManagerClosed() public static function entityManagerClosed()
{ {
return new self("The EntityManager is closed."); return new self("The EntityManager is closed.");
} }
/**
* @param string $mode
*
* @return ORMException
*/
public static function invalidHydrationMode($mode) public static function invalidHydrationMode($mode)
{ {
return new self("'$mode' is an invalid hydration mode."); return new self("'$mode' is an invalid hydration mode.");
} }
/**
* @return ORMException
*/
public static function mismatchedEventManager() public static function mismatchedEventManager()
{ {
return new self("Cannot use different EventManager instances for EntityManager and Connection."); return new self("Cannot use different EventManager instances for EntityManager and Connection.");
} }
/**
* @param string $methodName
*
* @return ORMException
*/
public static function findByRequiresParameter($methodName) public static function findByRequiresParameter($methodName)
{ {
return new self("You need to pass a parameter to '".$methodName."'"); return new self("You need to pass a parameter to '".$methodName."'");
} }
/**
* @param string $entityName
* @param string $fieldName
* @param string $method
*
* @return ORMException
*/
public static function invalidFindByCall($entityName, $fieldName, $method) public static function invalidFindByCall($entityName, $fieldName, $method)
{ {
return new self( return new self(
@ -112,6 +172,12 @@ class ORMException extends Exception
); );
} }
/**
* @param string $entityName
* @param string $associationFieldName
*
* @return ORMException
*/
public static function invalidFindByInverseAssociation($entityName, $associationFieldName) public static function invalidFindByInverseAssociation($entityName, $associationFieldName)
{ {
return new self( return new self(
@ -120,29 +186,51 @@ class ORMException extends Exception
); );
} }
public static function invalidResultCacheDriver() { /**
* @return ORMException
*/
public static function invalidResultCacheDriver()
{
return new self("Invalid result cache driver; it must implement Doctrine\\Common\\Cache\\Cache."); return new self("Invalid result cache driver; it must implement Doctrine\\Common\\Cache\\Cache.");
} }
public static function notSupported() { /**
* @return ORMException
*/
public static function notSupported()
{
return new self("This behaviour is (currently) not supported by Doctrine 2"); return new self("This behaviour is (currently) not supported by Doctrine 2");
} }
/**
* @return ORMException
*/
public static function queryCacheNotConfigured() public static function queryCacheNotConfigured()
{ {
return new self('Query Cache is not configured.'); return new self('Query Cache is not configured.');
} }
/**
* @return ORMException
*/
public static function metadataCacheNotConfigured() public static function metadataCacheNotConfigured()
{ {
return new self('Class Metadata Cache is not configured.'); return new self('Class Metadata Cache is not configured.');
} }
/**
* @return ORMException
*/
public static function proxyClassesAlwaysRegenerating() public static function proxyClassesAlwaysRegenerating()
{ {
return new self('Proxy Classes are always regenerating.'); return new self('Proxy Classes are always regenerating.');
} }
/**
* @param string $entityNamespaceAlias
*
* @return ORMException
*/
public static function unknownEntityNamespace($entityNamespaceAlias) public static function unknownEntityNamespace($entityNamespaceAlias)
{ {
return new self( return new self(
@ -150,16 +238,32 @@ class ORMException extends Exception
); );
} }
/**
* @param string $className
*
* @return ORMException
*/
public static function invalidEntityRepository($className) public static function invalidEntityRepository($className)
{ {
return new self("Invalid repository class '".$className."'. It must be a Doctrine\Common\Persistence\ObjectRepository."); return new self("Invalid repository class '".$className."'. It must be a Doctrine\Common\Persistence\ObjectRepository.");
} }
/**
* @param string $className
* @param string $fieldName
*
* @return ORMException
*/
public static function missingIdentifierField($className, $fieldName) public static function missingIdentifierField($className, $fieldName)
{ {
return new self("The identifier $fieldName is missing for a query of " . $className); return new self("The identifier $fieldName is missing for a query of " . $className);
} }
/**
* @param string $functionName
*
* @return ORMException
*/
public static function overwriteInternalDQLFunctionNotAllowed($functionName) public static function overwriteInternalDQLFunctionNotAllowed($functionName)
{ {
return new self("It is not allowed to overwrite internal function '$functionName' in the DQL parser through user-defined functions."); return new self("It is not allowed to overwrite internal function '$functionName' in the DQL parser through user-defined functions.");

View file

@ -26,21 +26,42 @@ namespace Doctrine\ORM;
*/ */
class ORMInvalidArgumentException extends \InvalidArgumentException class ORMInvalidArgumentException extends \InvalidArgumentException
{ {
/**
* @param object $entity
*
* @return ORMInvalidArgumentException
*/
static public function scheduleInsertForManagedEntity($entity) static public function scheduleInsertForManagedEntity($entity)
{ {
return new self("A managed+dirty entity " . self::objToStr($entity) . " can not be scheduled for insertion."); return new self("A managed+dirty entity " . self::objToStr($entity) . " can not be scheduled for insertion.");
} }
/**
* @param object $entity
*
* @return ORMInvalidArgumentException
*/
static public function scheduleInsertForRemovedEntity($entity) static public function scheduleInsertForRemovedEntity($entity)
{ {
return new self("Removed entity " . self::objToStr($entity) . " can not be scheduled for insertion."); return new self("Removed entity " . self::objToStr($entity) . " can not be scheduled for insertion.");
} }
/**
* @param object $entity
*
* @return ORMInvalidArgumentException
*/
static public function scheduleInsertTwice($entity) static public function scheduleInsertTwice($entity)
{ {
return new self("Entity " . self::objToStr($entity) . " can not be scheduled for insertion twice."); return new self("Entity " . self::objToStr($entity) . " can not be scheduled for insertion twice.");
} }
/**
* @param string $className
* @param object $entity
*
* @return ORMInvalidArgumentException
*/
static public function entityWithoutIdentity($className, $entity) static public function entityWithoutIdentity($className, $entity)
{ {
return new self( return new self(
@ -49,11 +70,22 @@ class ORMInvalidArgumentException extends \InvalidArgumentException
); );
} }
/**
* @param object $entity
*
* @return ORMInvalidArgumentException
*/
static public function readOnlyRequiresManagedEntity($entity) static public function readOnlyRequiresManagedEntity($entity)
{ {
return new self("Only managed entities can be marked or checked as read only. But " . self::objToStr($entity) . " is not"); return new self("Only managed entities can be marked or checked as read only. But " . self::objToStr($entity) . " is not");
} }
/**
* @param array $assoc
* @param object $entry
*
* @return ORMInvalidArgumentException
*/
static public function newEntityFoundThroughRelationship(array $assoc, $entry) static public function newEntityFoundThroughRelationship(array $assoc, $entry)
{ {
return new self("A new entity was found through the relationship '" return new self("A new entity was found through the relationship '"
@ -68,6 +100,12 @@ class ORMInvalidArgumentException extends \InvalidArgumentException
." implement '" . $assoc['targetEntity'] . "#__toString()' to get a clue.")); ." implement '" . $assoc['targetEntity'] . "#__toString()' to get a clue."));
} }
/**
* @param array $assoc
* @param object $entry
*
* @return ORMInvalidArgumentException
*/
static public function detachedEntityFoundThroughRelationship(array $assoc, $entry) static public function detachedEntityFoundThroughRelationship(array $assoc, $entry)
{ {
return new self("A detached entity of type " . $assoc['targetEntity'] . " (" . self::objToStr($entry) . ") " return new self("A detached entity of type " . $assoc['targetEntity'] . " (" . self::objToStr($entry) . ") "
@ -75,39 +113,75 @@ class ORMInvalidArgumentException extends \InvalidArgumentException
. "during cascading a persist operation."); . "during cascading a persist operation.");
} }
/**
* @param object $entity
*
* @return ORMInvalidArgumentException
*/
static public function entityNotManaged($entity) static public function entityNotManaged($entity)
{ {
return new self("Entity " . self::objToStr($entity) . " is not managed. An entity is managed if its fetched " . return new self("Entity " . self::objToStr($entity) . " is not managed. An entity is managed if its fetched " .
"from the database or registered as new through EntityManager#persist"); "from the database or registered as new through EntityManager#persist");
} }
/**
* @param object $entity
* @param string $operation
*
* @return ORMInvalidArgumentException
*/
static public function entityHasNoIdentity($entity, $operation) static public function entityHasNoIdentity($entity, $operation)
{ {
return new self("Entity has no identity, therefore " . $operation ." cannot be performed. " . self::objToStr($entity)); return new self("Entity has no identity, therefore " . $operation ." cannot be performed. " . self::objToStr($entity));
} }
/**
* @param object $entity
* @param string $operation
*
* @return ORMInvalidArgumentException
*/
static public function entityIsRemoved($entity, $operation) static public function entityIsRemoved($entity, $operation)
{ {
return new self("Entity is removed, therefore " . $operation ." cannot be performed. " . self::objToStr($entity)); return new self("Entity is removed, therefore " . $operation ." cannot be performed. " . self::objToStr($entity));
} }
/**
* @param object $entity
* @param string $operation
*
* @return ORMInvalidArgumentException
*/
static public function detachedEntityCannot($entity, $operation) static public function detachedEntityCannot($entity, $operation)
{ {
return new self("A detached entity was found during " . $operation . " " . self::objToStr($entity)); return new self("A detached entity was found during " . $operation . " " . self::objToStr($entity));
} }
/**
* @param string $context
* @param mixed $given
* @param int $parameterIndex
*
* @return ORMInvalidArgumentException
*/
public static function invalidObject($context, $given, $parameterIndex = 1) public static function invalidObject($context, $given, $parameterIndex = 1)
{ {
return new self($context .' expects parameter ' . $parameterIndex . return new self($context . ' expects parameter ' . $parameterIndex .
' to be an entity object, '. gettype($given) . ' given.'); ' to be an entity object, '. gettype($given) . ' given.');
} }
/**
* @return ORMInvalidArgumentException
*/
public static function invalidCompositeIdentifier() public static function invalidCompositeIdentifier()
{ {
return new self("Binding an entity with a composite primary key to a query is not supported. " . return new self("Binding an entity with a composite primary key to a query is not supported. " .
"You should split the parameter into the explicit fields and bind them seperately."); "You should split the parameter into the explicit fields and bind them seperately.");
} }
/**
* @return ORMInvalidArgumentException
*/
public static function invalidIdentifierBindingEntity() public static function invalidIdentifierBindingEntity()
{ {
return new self("Binding entities to query parameters only allowed for entities that have an identifier."); return new self("Binding entities to query parameters only allowed for entities that have an identifier.");
@ -116,7 +190,8 @@ class ORMInvalidArgumentException extends \InvalidArgumentException
/** /**
* Helper method to show an object as string. * Helper method to show an object as string.
* *
* @param object $obj * @param object $obj
*
* @return string * @return string
*/ */
private static function objToStr($obj) private static function objToStr($obj)

View file

@ -29,8 +29,15 @@ namespace Doctrine\ORM;
*/ */
class OptimisticLockException extends ORMException class OptimisticLockException extends ORMException
{ {
/**
* @var object|null
*/
private $entity; private $entity;
/**
* @param string $msg
* @param object $entity
*/
public function __construct($msg, $entity) public function __construct($msg, $entity)
{ {
parent::__construct($msg); parent::__construct($msg);
@ -40,23 +47,40 @@ class OptimisticLockException extends ORMException
/** /**
* Gets the entity that caused the exception. * Gets the entity that caused the exception.
* *
* @return object * @return object|null
*/ */
public function getEntity() public function getEntity()
{ {
return $this->entity; return $this->entity;
} }
/**
* @param object $entity
*
* @return OptimisticLockException
*/
public static function lockFailed($entity) public static function lockFailed($entity)
{ {
return new self("The optimistic lock on an entity failed.", $entity); return new self("The optimistic lock on an entity failed.", $entity);
} }
/**
* @param object $entity
* @param int $expectedLockVersion
* @param int $actualLockVersion
*
* @return OptimisticLockException
*/
public static function lockFailedVersionMissmatch($entity, $expectedLockVersion, $actualLockVersion) public static function lockFailedVersionMissmatch($entity, $expectedLockVersion, $actualLockVersion)
{ {
return new self("The optimistic lock failed, version " . $expectedLockVersion . " was expected, but is actually ".$actualLockVersion, $entity); return new self("The optimistic lock failed, version " . $expectedLockVersion . " was expected, but is actually ".$actualLockVersion, $entity);
} }
/**
* @param string $entityName
*
* @return OptimisticLockException
*/
public static function notVersioned($entityName) public static function notVersioned($entityName)
{ {
return new self("Cannot obtain optimistic lock on unversioned entity " . $entityName, null); return new self("Cannot obtain optimistic lock on unversioned entity " . $entityName, null);

View file

@ -25,7 +25,6 @@ use Doctrine\Common\Collections\Collection;
use Doctrine\Common\Collections\ArrayCollection; use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Selectable; use Doctrine\Common\Collections\Selectable;
use Doctrine\Common\Collections\Criteria; use Doctrine\Common\Collections\Criteria;
use Doctrine\Common\Collections\ExpressionBuilder;
use Closure; use Closure;
@ -87,6 +86,8 @@ final class PersistentCollection implements Collection, Selectable
/** /**
* The class descriptor of the collection's entity type. * The class descriptor of the collection's entity type.
*
* @var ClassMetadata
*/ */
private $typeClass; private $typeClass;
@ -115,9 +116,9 @@ final class PersistentCollection implements Collection, Selectable
/** /**
* Creates a new persistent collection. * Creates a new persistent collection.
* *
* @param EntityManager $em The EntityManager the collection will be associated with. * @param EntityManager $em The EntityManager the collection will be associated with.
* @param ClassMetadata $class The class descriptor of the entity type of this collection. * @param ClassMetadata $class The class descriptor of the entity type of this collection.
* @param array The collection elements. * @param array $coll The collection elements.
*/ */
public function __construct(EntityManager $em, $class, $coll) public function __construct(EntityManager $em, $class, $coll)
{ {
@ -132,7 +133,9 @@ final class PersistentCollection implements Collection, Selectable
* describes the association between the owner and the elements of the collection. * describes the association between the owner and the elements of the collection.
* *
* @param object $entity * @param object $entity
* @param AssociationMapping $assoc * @param array $assoc
*
* @return void
*/ */
public function setOwner($entity, array $assoc) public function setOwner($entity, array $assoc)
{ {
@ -152,6 +155,9 @@ final class PersistentCollection implements Collection, Selectable
return $this->owner; return $this->owner;
} }
/**
* @return Mapping\ClassMetadata
*/
public function getTypeClass() public function getTypeClass()
{ {
return $this->typeClass; return $this->typeClass;
@ -163,6 +169,8 @@ final class PersistentCollection implements Collection, Selectable
* complete bidirectional associations in the case of a one-to-many association. * complete bidirectional associations in the case of a one-to-many association.
* *
* @param mixed $element The element to add. * @param mixed $element The element to add.
*
* @return void
*/ */
public function hydrateAdd($element) public function hydrateAdd($element)
{ {
@ -186,8 +194,10 @@ final class PersistentCollection implements Collection, Selectable
* INTERNAL: * INTERNAL:
* Sets a keyed element in the collection during hydration. * Sets a keyed element in the collection during hydration.
* *
* @param mixed $key The key to set. * @param mixed $key The key to set.
* $param mixed $value The element to set. * @param mixed $element The element to set.
*
* @return void
*/ */
public function hydrateSet($key, $element) public function hydrateSet($key, $element)
{ {
@ -206,6 +216,8 @@ final class PersistentCollection implements Collection, Selectable
/** /**
* Initializes the collection by loading its contents from the database * Initializes the collection by loading its contents from the database
* if the collection is not yet initialized. * if the collection is not yet initialized.
*
* @return void
*/ */
public function initialize() public function initialize()
{ {
@ -239,6 +251,8 @@ final class PersistentCollection implements Collection, Selectable
/** /**
* INTERNAL: * INTERNAL:
* Tells this collection to take a snapshot of its current state. * Tells this collection to take a snapshot of its current state.
*
* @return void
*/ */
public function takeSnapshot() public function takeSnapshot()
{ {
@ -299,6 +313,8 @@ final class PersistentCollection implements Collection, Selectable
/** /**
* Marks this collection as changed/dirty. * Marks this collection as changed/dirty.
*
* @return void
*/ */
private function changed() private function changed()
{ {
@ -332,6 +348,8 @@ final class PersistentCollection implements Collection, Selectable
* Sets a boolean flag, indicating whether this collection is dirty. * Sets a boolean flag, indicating whether this collection is dirty.
* *
* @param boolean $dirty Whether the collection should be marked dirty or not. * @param boolean $dirty Whether the collection should be marked dirty or not.
*
* @return void
*/ */
public function setDirty($dirty) public function setDirty($dirty)
{ {
@ -342,6 +360,8 @@ final class PersistentCollection implements Collection, Selectable
* Sets the initialized flag of the collection, forcing it into that state. * Sets the initialized flag of the collection, forcing it into that state.
* *
* @param boolean $bool * @param boolean $bool
*
* @return void
*/ */
public function setInitialized($bool) public function setInitialized($bool)
{ {
@ -358,7 +378,9 @@ final class PersistentCollection implements Collection, Selectable
return $this->initialized; return $this->initialized;
} }
/** {@inheritdoc} */ /**
* {@inheritdoc}
*/
public function first() public function first()
{ {
$this->initialize(); $this->initialize();
@ -366,7 +388,9 @@ final class PersistentCollection implements Collection, Selectable
return $this->coll->first(); return $this->coll->first();
} }
/** {@inheritdoc} */ /**
* {@inheritdoc}
*/
public function last() public function last()
{ {
$this->initialize(); $this->initialize();
@ -668,6 +692,8 @@ final class PersistentCollection implements Collection, Selectable
* Called by PHP when this collection is serialized. Ensures that only the * Called by PHP when this collection is serialized. Ensures that only the
* elements are properly serialized. * elements are properly serialized.
* *
* @return array
*
* @internal Tried to implement Serializable first but that did not work well * @internal Tried to implement Serializable first but that did not work well
* with circular references. This solution seems simpler and works well. * with circular references. This solution seems simpler and works well.
*/ */
@ -753,8 +779,8 @@ final class PersistentCollection implements Collection, Selectable
* Keys have to be preserved by this method. Calling this method will only return the * Keys have to be preserved by this method. Calling this method will only return the
* selected slice and NOT change the elements contained in the collection slice is called on. * selected slice and NOT change the elements contained in the collection slice is called on.
* *
* @param int $offset * @param int $offset
* @param int $length * @param int|null $length
* *
* @return array * @return array
*/ */
@ -781,6 +807,8 @@ final class PersistentCollection implements Collection, Selectable
* 3. Snapshot leads to invalid diffs being generated. * 3. Snapshot leads to invalid diffs being generated.
* 4. Lazy loading grabs entities from old owner object. * 4. Lazy loading grabs entities from old owner object.
* 5. New collection is connected to old owner and leads to duplicate keys. * 5. New collection is connected to old owner and leads to duplicate keys.
*
* @return void
*/ */
public function __clone() public function __clone()
{ {
@ -801,7 +829,10 @@ final class PersistentCollection implements Collection, Selectable
* return a new collection containing these elements. * return a new collection containing these elements.
* *
* @param \Doctrine\Common\Collections\Criteria $criteria * @param \Doctrine\Common\Collections\Criteria $criteria
*
* @return Collection * @return Collection
*
* @throws \RuntimeException
*/ */
public function matching(Criteria $criteria) public function matching(Criteria $criteria)
{ {

View file

@ -30,6 +30,9 @@ namespace Doctrine\ORM;
*/ */
class PessimisticLockException extends ORMException class PessimisticLockException extends ORMException
{ {
/**
* @return PessimisticLockException
*/
public static function lockFailed() public static function lockFailed()
{ {
return new self("The pessimistic lock failed."); return new self("The pessimistic lock failed.");

View file

@ -41,6 +41,7 @@ final class Query extends AbstractQuery
* A query object is in CLEAN state when it has NO unparsed/unprocessed DQL parts. * A query object is in CLEAN state when it has NO unparsed/unprocessed DQL parts.
*/ */
const STATE_CLEAN = 1; const STATE_CLEAN = 1;
/** /**
* A query object is in state DIRTY when it has DQL parts that have not yet been * A query object is in state DIRTY when it has DQL parts that have not yet been
* parsed/processed. This is automatically defined as DIRTY when addDqlQueryPart * parsed/processed. This is automatically defined as DIRTY when addDqlQueryPart
@ -57,7 +58,6 @@ final class Query extends AbstractQuery
*/ */
const HINT_REFRESH = 'doctrine.refresh'; const HINT_REFRESH = 'doctrine.refresh';
/** /**
* Internal hint: is set to the proxy entity that is currently triggered for loading * Internal hint: is set to the proxy entity that is currently triggered for loading
* *
@ -73,6 +73,7 @@ final class Query extends AbstractQuery
* @todo Rename: HINT_OPTIMIZE * @todo Rename: HINT_OPTIMIZE
*/ */
const HINT_FORCE_PARTIAL_LOAD = 'doctrine.forcePartialLoad'; const HINT_FORCE_PARTIAL_LOAD = 'doctrine.forcePartialLoad';
/** /**
* The includeMetaColumns query hint causes meta columns like foreign keys and * The includeMetaColumns query hint causes meta columns like foreign keys and
* discriminator columns to be selected and returned as part of the query result. * discriminator columns to be selected and returned as part of the query result.
@ -111,7 +112,6 @@ final class Query extends AbstractQuery
*/ */
const HINT_LOCK_MODE = 'doctrine.lockMode'; const HINT_LOCK_MODE = 'doctrine.lockMode';
/** /**
* @var integer $_state The current state of this query. * @var integer $_state The current state of this query.
*/ */
@ -171,6 +171,7 @@ final class Query extends AbstractQuery
* Gets the SQL query/queries that correspond to this DQL query. * Gets the SQL query/queries that correspond to this DQL query.
* *
* @return mixed The built sql query or an array of all sql queries. * @return mixed The built sql query or an array of all sql queries.
*
* @override * @override
*/ */
public function getSQL() public function getSQL()
@ -265,10 +266,13 @@ final class Query extends AbstractQuery
} }
/** /**
* Processes query parameter mappings * Processes query parameter mappings.
* *
* @param array $paramMappings * @param array $paramMappings
*
* @return array * @return array
*
* @throws Query\QueryException
*/ */
private function processParameterMappings($paramMappings) private function processParameterMappings($paramMappings)
{ {
@ -321,7 +325,8 @@ final class Query extends AbstractQuery
/** /**
* Defines a cache driver to be used for caching queries. * Defines a cache driver to be used for caching queries.
* *
* @param Doctrine_Cache_Interface|null $driver Cache driver * @param Doctrine_Cache_Interface|null $queryCache Cache driver.
*
* @return Query This query instance. * @return Query This query instance.
*/ */
public function setQueryCacheDriver($queryCache) public function setQueryCacheDriver($queryCache)
@ -335,7 +340,8 @@ final class Query extends AbstractQuery
* Defines whether the query should make use of a query cache, if available. * Defines whether the query should make use of a query cache, if available.
* *
* @param boolean $bool * @param boolean $bool
* @return @return Query This query instance. *
* @return Query This query instance.
*/ */
public function useQueryCache($bool) public function useQueryCache($bool)
{ {
@ -362,7 +368,8 @@ final class Query extends AbstractQuery
/** /**
* Defines how long the query cache will be active before expire. * Defines how long the query cache will be active before expire.
* *
* @param integer $timeToLive How long the cache entry is valid * @param integer $timeToLive How long the cache entry is valid.
*
* @return Query This query instance. * @return Query This query instance.
*/ */
public function setQueryCacheLifetime($timeToLive) public function setQueryCacheLifetime($timeToLive)
@ -390,6 +397,7 @@ final class Query extends AbstractQuery
* Defines if the query cache is active or not. * Defines if the query cache is active or not.
* *
* @param boolean $expire Whether or not to force query cache expiration. * @param boolean $expire Whether or not to force query cache expiration.
*
* @return Query This query instance. * @return Query This query instance.
*/ */
public function expireQueryCache($expire = true) public function expireQueryCache($expire = true)
@ -423,7 +431,8 @@ final class Query extends AbstractQuery
/** /**
* Sets a DQL query string. * Sets a DQL query string.
* *
* @param string $dqlQuery DQL Query * @param string $dqlQuery DQL Query.
*
* @return \Doctrine\ORM\AbstractQuery * @return \Doctrine\ORM\AbstractQuery
*/ */
public function setDQL($dqlQuery) public function setDQL($dqlQuery)
@ -439,7 +448,7 @@ final class Query extends AbstractQuery
/** /**
* Returns the DQL query that is represented by this query object. * Returns the DQL query that is represented by this query object.
* *
* @return string DQL query * @return string DQL query.
*/ */
public function getDQL() public function getDQL()
{ {
@ -454,7 +463,7 @@ final class Query extends AbstractQuery
* @see AbstractQuery::STATE_CLEAN * @see AbstractQuery::STATE_CLEAN
* @see AbstractQuery::STATE_DIRTY * @see AbstractQuery::STATE_DIRTY
* *
* @return integer Return the query state * @return integer The query state.
*/ */
public function getState() public function getState()
{ {
@ -464,7 +473,8 @@ final class Query extends AbstractQuery
/** /**
* Method to check if an arbitrary piece of DQL exists * Method to check if an arbitrary piece of DQL exists
* *
* @param string $dql Arbitrary piece of DQL to check for * @param string $dql Arbitrary piece of DQL to check for.
*
* @return boolean * @return boolean
*/ */
public function contains($dql) public function contains($dql)
@ -476,6 +486,7 @@ final class Query extends AbstractQuery
* Sets the position of the first result to retrieve (the "offset"). * Sets the position of the first result to retrieve (the "offset").
* *
* @param integer $firstResult The first result to return. * @param integer $firstResult The first result to return.
*
* @return Query This query object. * @return Query This query object.
*/ */
public function setFirstResult($firstResult) public function setFirstResult($firstResult)
@ -501,6 +512,7 @@ final class Query extends AbstractQuery
* Sets the maximum number of results to retrieve (the "limit"). * Sets the maximum number of results to retrieve (the "limit").
* *
* @param integer $maxResults * @param integer $maxResults
*
* @return Query This query object. * @return Query This query object.
*/ */
public function setMaxResults($maxResults) public function setMaxResults($maxResults)
@ -526,8 +538,9 @@ final class Query extends AbstractQuery
* Executes the query and returns an IterableResult that can be used to incrementally * Executes the query and returns an IterableResult that can be used to incrementally
* iterated over the result. * iterated over the result.
* *
* @param \Doctrine\Common\Collections\ArrayCollection|array $parameters The query parameters. * @param ArrayCollection|array|null $parameters The query parameters.
* @param integer $hydrationMode The hydration mode to use. * @param integer $hydrationMode The hydration mode to use.
*
* @return \Doctrine\ORM\Internal\Hydration\IterableResult * @return \Doctrine\ORM\Internal\Hydration\IterableResult
*/ */
public function iterate($parameters = null, $hydrationMode = self::HYDRATE_OBJECT) public function iterate($parameters = null, $hydrationMode = self::HYDRATE_OBJECT)
@ -561,8 +574,12 @@ final class Query extends AbstractQuery
* Set the lock mode for this Query. * Set the lock mode for this Query.
* *
* @see \Doctrine\DBAL\LockMode * @see \Doctrine\DBAL\LockMode
*
* @param int $lockMode * @param int $lockMode
*
* @return Query * @return Query
*
* @throws TransactionRequiredException
*/ */
public function setLockMode($lockMode) public function setLockMode($lockMode)
{ {

View file

@ -229,8 +229,9 @@ class QueryBuilder
/** /**
* Finds the root entity alias of the joined entity. * Finds the root entity alias of the joined entity.
* *
* @param string $alias The alias of the new join entity * @param string $alias The alias of the new join entity
* @param string $parentAlias The parent entity alias of the join relationship * @param string $parentAlias The parent entity alias of the join relationship
*
* @return string * @return string
*/ */
private function findRootAlias($alias, $parentAlias) private function findRootAlias($alias, $parentAlias)
@ -265,7 +266,8 @@ class QueryBuilder
* </code> * </code>
* *
* @deprecated Please use $qb->getRootAliases() instead. * @deprecated Please use $qb->getRootAliases() instead.
* @return string $rootAlias *
* @return string
*/ */
public function getRootAlias() public function getRootAlias()
{ {
@ -285,7 +287,7 @@ class QueryBuilder
* $qb->getRootAliases(); // array('u') * $qb->getRootAliases(); // array('u')
* </code> * </code>
* *
* @return array $rootAliases * @return array
*/ */
public function getRootAliases() public function getRootAliases()
{ {
@ -318,7 +320,7 @@ class QueryBuilder
* $qb->getRootEntities(); // array('User') * $qb->getRootEntities(); // array('User')
* </code> * </code>
* *
* @return array $rootEntities * @return array
*/ */
public function getRootEntities() public function getRootEntities()
{ {
@ -350,9 +352,10 @@ class QueryBuilder
* ->setParameter('user_id', 1); * ->setParameter('user_id', 1);
* </code> * </code>
* *
* @param string|integer $key The parameter position or name. * @param string|integer $key The parameter position or name.
* @param mixed $value The parameter value. * @param mixed $value The parameter value.
* @param string|null $type PDO::PARAM_* or \Doctrine\DBAL\Types\Type::* constant * @param string|null $type PDO::PARAM_* or \Doctrine\DBAL\Types\Type::* constant
*
* @return QueryBuilder This QueryBuilder instance. * @return QueryBuilder This QueryBuilder instance.
*/ */
public function setParameter($key, $value, $type = null) public function setParameter($key, $value, $type = null)
@ -393,7 +396,8 @@ class QueryBuilder
* ))); * )));
* </code> * </code>
* *
* @param \Doctrine\Common\Collections\ArrayCollection|array $params The query parameters to set. * @param \Doctrine\Common\Collections\ArrayCollection|array $parameters The query parameters to set.
*
* @return QueryBuilder This QueryBuilder instance. * @return QueryBuilder This QueryBuilder instance.
*/ */
public function setParameters($parameters) public function setParameters($parameters)
@ -450,6 +454,7 @@ class QueryBuilder
* Sets the position of the first result to retrieve (the "offset"). * Sets the position of the first result to retrieve (the "offset").
* *
* @param integer $firstResult The first result to return. * @param integer $firstResult The first result to return.
*
* @return QueryBuilder This QueryBuilder instance. * @return QueryBuilder This QueryBuilder instance.
*/ */
public function setFirstResult($firstResult) public function setFirstResult($firstResult)
@ -474,6 +479,7 @@ class QueryBuilder
* Sets the maximum number of results to retrieve (the "limit"). * Sets the maximum number of results to retrieve (the "limit").
* *
* @param integer $maxResults The maximum number of results to retrieve. * @param integer $maxResults The maximum number of results to retrieve.
*
* @return QueryBuilder This QueryBuilder instance. * @return QueryBuilder This QueryBuilder instance.
*/ */
public function setMaxResults($maxResults) public function setMaxResults($maxResults)
@ -500,9 +506,10 @@ class QueryBuilder
* The available parts are: 'select', 'from', 'join', 'set', 'where', * The available parts are: 'select', 'from', 'join', 'set', 'where',
* 'groupBy', 'having' and 'orderBy'. * 'groupBy', 'having' and 'orderBy'.
* *
* @param string $dqlPartName * @param string $dqlPartName
* @param string $dqlPart * @param Expr\Base $dqlPart
* @param string $append * @param bool $append
*
* @return QueryBuilder This QueryBuilder instance. * @return QueryBuilder This QueryBuilder instance.
*/ */
public function add($dqlPartName, $dqlPart, $append = false) public function add($dqlPartName, $dqlPart, $append = false)
@ -552,6 +559,7 @@ class QueryBuilder
* </code> * </code>
* *
* @param mixed $select The selection expressions. * @param mixed $select The selection expressions.
*
* @return QueryBuilder This QueryBuilder instance. * @return QueryBuilder This QueryBuilder instance.
*/ */
public function select($select = null) public function select($select = null)
@ -577,7 +585,8 @@ class QueryBuilder
* ->from('User', 'u'); * ->from('User', 'u');
* </code> * </code>
* *
* @param bool * @param bool $flag
*
* @return QueryBuilder * @return QueryBuilder
*/ */
public function distinct($flag = true) public function distinct($flag = true)
@ -599,6 +608,7 @@ class QueryBuilder
* </code> * </code>
* *
* @param mixed $select The selection expression. * @param mixed $select The selection expression.
*
* @return QueryBuilder This QueryBuilder instance. * @return QueryBuilder This QueryBuilder instance.
*/ */
public function addSelect($select = null) public function addSelect($select = null)
@ -626,7 +636,8 @@ class QueryBuilder
* </code> * </code>
* *
* @param string $delete The class/type whose instances are subject to the deletion. * @param string $delete The class/type whose instances are subject to the deletion.
* @param string $alias The class/type alias used in the constructed query. * @param string $alias The class/type alias used in the constructed query.
*
* @return QueryBuilder This QueryBuilder instance. * @return QueryBuilder This QueryBuilder instance.
*/ */
public function delete($delete = null, $alias = null) public function delete($delete = null, $alias = null)
@ -652,7 +663,8 @@ class QueryBuilder
* </code> * </code>
* *
* @param string $update The class/type whose instances are subject to the update. * @param string $update The class/type whose instances are subject to the update.
* @param string $alias The class/type alias used in the constructed query. * @param string $alias The class/type alias used in the constructed query.
*
* @return QueryBuilder This QueryBuilder instance. * @return QueryBuilder This QueryBuilder instance.
*/ */
public function update($update = null, $alias = null) public function update($update = null, $alias = null)
@ -676,9 +688,10 @@ class QueryBuilder
* ->from('User', 'u') * ->from('User', 'u')
* </code> * </code>
* *
* @param string $from The class name. * @param string $from The class name.
* @param string $alias The alias of the class. * @param string $alias The alias of the class.
* @param string $indexBy The index for the from. * @param string $indexBy The index for the from.
*
* @return QueryBuilder This QueryBuilder instance. * @return QueryBuilder This QueryBuilder instance.
*/ */
public function from($from, $alias, $indexBy = null) public function from($from, $alias, $indexBy = null)
@ -700,11 +713,12 @@ class QueryBuilder
* ->join('u.Phonenumbers', 'p', Expr\Join::WITH, 'p.is_primary = 1'); * ->join('u.Phonenumbers', 'p', Expr\Join::WITH, 'p.is_primary = 1');
* </code> * </code>
* *
* @param string $join The relationship to join * @param string $join The relationship to join.
* @param string $alias The alias of the join * @param string $alias The alias of the join.
* @param string $conditionType The condition type constant. Either ON or WITH. * @param string|null $conditionType The condition type constant. Either ON or WITH.
* @param string $condition The condition for the join * @param string|null $condition The condition for the join.
* @param string $indexBy The index for the join * @param string|null $indexBy The index for the join.
*
* @return QueryBuilder This QueryBuilder instance. * @return QueryBuilder This QueryBuilder instance.
*/ */
public function join($join, $alias, $conditionType = null, $condition = null, $indexBy = null) public function join($join, $alias, $conditionType = null, $condition = null, $indexBy = null)
@ -725,11 +739,12 @@ class QueryBuilder
* ->from('User', 'u') * ->from('User', 'u')
* ->innerJoin('u.Phonenumbers', 'p', Expr\Join::WITH, 'p.is_primary = 1'); * ->innerJoin('u.Phonenumbers', 'p', Expr\Join::WITH, 'p.is_primary = 1');
* *
* @param string $join The relationship to join * @param string $join The relationship to join.
* @param string $alias The alias of the join * @param string $alias The alias of the join.
* @param string $conditionType The condition type constant. Either ON or WITH. * @param string|null $conditionType The condition type constant. Either ON or WITH.
* @param string $condition The condition for the join * @param string|null $condition The condition for the join.
* @param string $indexBy The index for the join * @param string|null $indexBy The index for the join.
*
* @return QueryBuilder This QueryBuilder instance. * @return QueryBuilder This QueryBuilder instance.
*/ */
public function innerJoin($join, $alias, $conditionType = null, $condition = null, $indexBy = null) public function innerJoin($join, $alias, $conditionType = null, $condition = null, $indexBy = null)
@ -759,11 +774,12 @@ class QueryBuilder
* ->leftJoin('u.Phonenumbers', 'p', Expr\Join::WITH, 'p.is_primary = 1'); * ->leftJoin('u.Phonenumbers', 'p', Expr\Join::WITH, 'p.is_primary = 1');
* </code> * </code>
* *
* @param string $join The relationship to join * @param string $join The relationship to join.
* @param string $alias The alias of the join * @param string $alias The alias of the join.
* @param string $conditionType The condition type constant. Either ON or WITH. * @param string|null $conditionType The condition type constant. Either ON or WITH.
* @param string $condition The condition for the join * @param string|null $condition The condition for the join.
* @param string $indexBy The index for the join * @param string|null $indexBy The index for the join.
*
* @return QueryBuilder This QueryBuilder instance. * @return QueryBuilder This QueryBuilder instance.
*/ */
public function leftJoin($join, $alias, $conditionType = null, $condition = null, $indexBy = null) public function leftJoin($join, $alias, $conditionType = null, $condition = null, $indexBy = null)
@ -789,8 +805,9 @@ class QueryBuilder
* ->where('u.id = ?'); * ->where('u.id = ?');
* </code> * </code>
* *
* @param string $key The key/field to set. * @param string $key The key/field to set.
* @param string $value The value, expression, placeholder, etc. * @param string $value The value, expression, placeholder, etc.
*
* @return QueryBuilder This QueryBuilder instance. * @return QueryBuilder This QueryBuilder instance.
*/ */
public function set($key, $value) public function set($key, $value)
@ -821,6 +838,7 @@ class QueryBuilder
* </code> * </code>
* *
* @param mixed $predicates The restriction predicates. * @param mixed $predicates The restriction predicates.
*
* @return QueryBuilder This QueryBuilder instance. * @return QueryBuilder This QueryBuilder instance.
*/ */
public function where($predicates) public function where($predicates)
@ -845,7 +863,9 @@ class QueryBuilder
* </code> * </code>
* *
* @param mixed $where The query restrictions. * @param mixed $where The query restrictions.
*
* @return QueryBuilder This QueryBuilder instance. * @return QueryBuilder This QueryBuilder instance.
*
* @see where() * @see where()
*/ */
public function andWhere($where) public function andWhere($where)
@ -875,8 +895,10 @@ class QueryBuilder
* ->orWhere('u.id = 2'); * ->orWhere('u.id = 2');
* </code> * </code>
* *
* @param mixed $where The WHERE statement * @param mixed $where The WHERE statement.
* @return QueryBuilder $qb *
* @return QueryBuilder
*
* @see where() * @see where()
*/ */
public function orWhere($where) public function orWhere($where)
@ -906,6 +928,7 @@ class QueryBuilder
* </code> * </code>
* *
* @param string $groupBy The grouping expression. * @param string $groupBy The grouping expression.
*
* @return QueryBuilder This QueryBuilder instance. * @return QueryBuilder This QueryBuilder instance.
*/ */
public function groupBy($groupBy) public function groupBy($groupBy)
@ -913,7 +936,6 @@ class QueryBuilder
return $this->add('groupBy', new Expr\GroupBy(func_get_args())); return $this->add('groupBy', new Expr\GroupBy(func_get_args()));
} }
/** /**
* Adds a grouping expression to the query. * Adds a grouping expression to the query.
* *
@ -926,6 +948,7 @@ class QueryBuilder
* </code> * </code>
* *
* @param string $groupBy The grouping expression. * @param string $groupBy The grouping expression.
*
* @return QueryBuilder This QueryBuilder instance. * @return QueryBuilder This QueryBuilder instance.
*/ */
public function addGroupBy($groupBy) public function addGroupBy($groupBy)
@ -938,6 +961,7 @@ class QueryBuilder
* Replaces any previous having restrictions, if any. * Replaces any previous having restrictions, if any.
* *
* @param mixed $having The restriction over the groups. * @param mixed $having The restriction over the groups.
*
* @return QueryBuilder This QueryBuilder instance. * @return QueryBuilder This QueryBuilder instance.
*/ */
public function having($having) public function having($having)
@ -954,6 +978,7 @@ class QueryBuilder
* conjunction with any existing having restrictions. * conjunction with any existing having restrictions.
* *
* @param mixed $having The restriction to append. * @param mixed $having The restriction to append.
*
* @return QueryBuilder This QueryBuilder instance. * @return QueryBuilder This QueryBuilder instance.
*/ */
public function andHaving($having) public function andHaving($having)
@ -976,6 +1001,7 @@ class QueryBuilder
* disjunction with any existing having restrictions. * disjunction with any existing having restrictions.
* *
* @param mixed $having The restriction to add. * @param mixed $having The restriction to add.
*
* @return QueryBuilder This QueryBuilder instance. * @return QueryBuilder This QueryBuilder instance.
*/ */
public function orHaving($having) public function orHaving($having)
@ -997,8 +1023,9 @@ class QueryBuilder
* Specifies an ordering for the query results. * Specifies an ordering for the query results.
* Replaces any previously specified orderings, if any. * Replaces any previously specified orderings, if any.
* *
* @param string $sort The ordering expression. * @param string $sort The ordering expression.
* @param string $order The ordering direction. * @param string $order The ordering direction.
*
* @return QueryBuilder This QueryBuilder instance. * @return QueryBuilder This QueryBuilder instance.
*/ */
public function orderBy($sort, $order = null) public function orderBy($sort, $order = null)
@ -1011,8 +1038,9 @@ class QueryBuilder
/** /**
* Adds an ordering to the query results. * Adds an ordering to the query results.
* *
* @param string $sort The ordering expression. * @param string $sort The ordering expression.
* @param string $order The ordering direction. * @param string $order The ordering direction.
*
* @return QueryBuilder This QueryBuilder instance. * @return QueryBuilder This QueryBuilder instance.
*/ */
public function addOrderBy($sort, $order = null) public function addOrderBy($sort, $order = null)
@ -1027,6 +1055,7 @@ class QueryBuilder
* Override firstResult and maxResults if they set. * Override firstResult and maxResults if they set.
* *
* @param Criteria $criteria * @param Criteria $criteria
*
* @return QueryBuilder * @return QueryBuilder
*/ */
public function addCriteria(Criteria $criteria) public function addCriteria(Criteria $criteria)
@ -1061,7 +1090,9 @@ class QueryBuilder
* Get a query part by its name. * Get a query part by its name.
* *
* @param string $queryPartName * @param string $queryPartName
*
* @return mixed $queryPart * @return mixed $queryPart
*
* @todo Rename: getQueryPart (or remove?) * @todo Rename: getQueryPart (or remove?)
*/ */
public function getDQLPart($queryPartName) public function getDQLPart($queryPartName)
@ -1073,6 +1104,7 @@ class QueryBuilder
* Get all query parts. * Get all query parts.
* *
* @return array $dqlParts * @return array $dqlParts
*
* @todo Rename: getQueryParts (or remove?) * @todo Rename: getQueryParts (or remove?)
*/ */
public function getDQLParts() public function getDQLParts()
@ -1080,6 +1112,9 @@ class QueryBuilder
return $this->_dqlParts; return $this->_dqlParts;
} }
/**
* @return string
*/
private function _getDQLForDelete() private function _getDQLForDelete()
{ {
return 'DELETE' return 'DELETE'
@ -1088,6 +1123,9 @@ class QueryBuilder
. $this->_getReducedDQLQueryPart('orderBy', array('pre' => ' ORDER BY ', 'separator' => ', ')); . $this->_getReducedDQLQueryPart('orderBy', array('pre' => ' ORDER BY ', 'separator' => ', '));
} }
/**
* @return string
*/
private function _getDQLForUpdate() private function _getDQLForUpdate()
{ {
return 'UPDATE' return 'UPDATE'
@ -1097,6 +1135,9 @@ class QueryBuilder
. $this->_getReducedDQLQueryPart('orderBy', array('pre' => ' ORDER BY ', 'separator' => ', ')); . $this->_getReducedDQLQueryPart('orderBy', array('pre' => ' ORDER BY ', 'separator' => ', '));
} }
/**
* @return string
*/
private function _getDQLForSelect() private function _getDQLForSelect()
{ {
$dql = 'SELECT' $dql = 'SELECT'
@ -1133,6 +1174,12 @@ class QueryBuilder
return $dql; return $dql;
} }
/**
* @param string $queryPartName
* @param array $options
*
* @return string
*/
private function _getReducedDQLQueryPart($queryPartName, $options = array()) private function _getReducedDQLQueryPart($queryPartName, $options = array())
{ {
$queryPart = $this->getDQLPart($queryPartName); $queryPart = $this->getDQLPart($queryPartName);
@ -1149,7 +1196,8 @@ class QueryBuilder
/** /**
* Reset DQL parts * Reset DQL parts
* *
* @param array $parts * @param array|null $parts
*
* @return QueryBuilder * @return QueryBuilder
*/ */
public function resetDQLParts($parts = null) public function resetDQLParts($parts = null)
@ -1169,7 +1217,8 @@ class QueryBuilder
* Reset single DQL part * Reset single DQL part
* *
* @param string $part * @param string $part
* @return QueryBuilder; *
* @return QueryBuilder
*/ */
public function resetDQLPart($part) public function resetDQLPart($part)
{ {

View file

@ -30,6 +30,9 @@ namespace Doctrine\ORM;
*/ */
class TransactionRequiredException extends ORMException class TransactionRequiredException extends ORMException
{ {
/**
* @return TransactionRequiredException
*/
static public function transactionRequired() static public function transactionRequired()
{ {
return new self('An open transaction is required for this operation.'); return new self('An open transaction is required for this operation.');

View file

@ -259,9 +259,9 @@ class UnitOfWork implements PropertyChangedListener
* *
* @param null|object|array $entity * @param null|object|array $entity
* *
* @throws \Exception
*
* @return void * @return void
*
* @throws \Exception
*/ */
public function commit($entity = null) public function commit($entity = null)
{ {
@ -396,9 +396,9 @@ class UnitOfWork implements PropertyChangedListener
* *
* @param object $entity * @param object $entity
* *
* @throws \InvalidArgumentException
*
* @return void * @return void
*
* @throws \InvalidArgumentException
*/ */
private function computeSingleEntityChangeSet($entity) private function computeSingleEntityChangeSet($entity)
{ {
@ -489,9 +489,13 @@ class UnitOfWork implements PropertyChangedListener
* then this collection is marked for deletion. * then this collection is marked for deletion.
* *
* @ignore * @ignore
*
* @internal Don't call from the outside. * @internal Don't call from the outside.
*
* @param ClassMetadata $class The class descriptor of the entity. * @param ClassMetadata $class The class descriptor of the entity.
* @param object $entity The entity for which to compute the changes. * @param object $entity The entity for which to compute the changes.
*
* @return void
*/ */
public function computeChangeSet(ClassMetadata $class, $entity) public function computeChangeSet(ClassMetadata $class, $entity)
{ {
@ -668,6 +672,8 @@ class UnitOfWork implements PropertyChangedListener
* Computes all the changes that have been done to entities and collections * Computes all the changes that have been done to entities and collections
* since the last commit and stores these changes in the _entityChangeSet map * since the last commit and stores these changes in the _entityChangeSet map
* temporarily for access by the persisters, until the UoW commit is finished. * temporarily for access by the persisters, until the UoW commit is finished.
*
* @return void
*/ */
public function computeChangeSets() public function computeChangeSets()
{ {
@ -796,7 +802,9 @@ class UnitOfWork implements PropertyChangedListener
/** /**
* @param ClassMetadata $class * @param ClassMetadata $class
* @param object $entity * @param object $entity
*
* @return void
*/ */
private function persistNew($class, $entity) private function persistNew($class, $entity)
{ {
@ -839,8 +847,9 @@ class UnitOfWork implements PropertyChangedListener
* whereby changes detected in this method prevail. * whereby changes detected in this method prevail.
* *
* @ignore * @ignore
* @param ClassMetadata $class The class descriptor of the entity. *
* @param object $entity The entity for which to (re)calculate the change set. * @param ClassMetadata $class The class descriptor of the entity.
* @param object $entity The entity for which to (re)calculate the change set.
* *
* @throws ORMInvalidArgumentException If the passed entity is not MANAGED. * @throws ORMInvalidArgumentException If the passed entity is not MANAGED.
*/ */
@ -895,6 +904,8 @@ class UnitOfWork implements PropertyChangedListener
* Executes all entity insertions for entities of the specified type. * Executes all entity insertions for entities of the specified type.
* *
* @param \Doctrine\ORM\Mapping\ClassMetadata $class * @param \Doctrine\ORM\Mapping\ClassMetadata $class
*
* @return void
*/ */
private function executeInserts($class) private function executeInserts($class)
{ {
@ -952,6 +963,8 @@ class UnitOfWork implements PropertyChangedListener
* Executes all entity updates for entities of the specified type. * Executes all entity updates for entities of the specified type.
* *
* @param \Doctrine\ORM\Mapping\ClassMetadata $class * @param \Doctrine\ORM\Mapping\ClassMetadata $class
*
* @return void
*/ */
private function executeUpdates($class) private function executeUpdates($class)
{ {
@ -1002,6 +1015,8 @@ class UnitOfWork implements PropertyChangedListener
* Executes all entity deletions for entities of the specified type. * Executes all entity deletions for entities of the specified type.
* *
* @param \Doctrine\ORM\Mapping\ClassMetadata $class * @param \Doctrine\ORM\Mapping\ClassMetadata $class
*
* @return void
*/ */
private function executeDeletions($class) private function executeDeletions($class)
{ {
@ -1045,7 +1060,7 @@ class UnitOfWork implements PropertyChangedListener
/** /**
* Gets the commit order. * Gets the commit order.
* *
* @param array $entityChangeSet * @param array|null $entityChangeSet
* *
* @return array * @return array
*/ */
@ -1122,6 +1137,8 @@ class UnitOfWork implements PropertyChangedListener
* *
* @param object $entity The entity to schedule for insertion. * @param object $entity The entity to schedule for insertion.
* *
* @return void
*
* @throws ORMInvalidArgumentException * @throws ORMInvalidArgumentException
* @throws \InvalidArgumentException * @throws \InvalidArgumentException
*/ */
@ -1172,6 +1189,8 @@ class UnitOfWork implements PropertyChangedListener
* *
* @param object $entity The entity to schedule for being updated. * @param object $entity The entity to schedule for being updated.
* *
* @return void
*
* @throws ORMInvalidArgumentException * @throws ORMInvalidArgumentException
*/ */
public function scheduleForUpdate($entity) public function scheduleForUpdate($entity)
@ -1199,8 +1218,11 @@ class UnitOfWork implements PropertyChangedListener
* Extra updates for entities are stored as (entity, changeset) tuples. * Extra updates for entities are stored as (entity, changeset) tuples.
* *
* @ignore * @ignore
* @param object $entity The entity for which to schedule an extra update. *
* @param array $changeset The changeset of the entity (what to update). * @param object $entity The entity for which to schedule an extra update.
* @param array $changeset The changeset of the entity (what to update).
*
* @return void
*/ */
public function scheduleExtraUpdate($entity, array $changeset) public function scheduleExtraUpdate($entity, array $changeset)
{ {
@ -1230,7 +1252,6 @@ class UnitOfWork implements PropertyChangedListener
return isset($this->entityUpdates[spl_object_hash($entity)]); return isset($this->entityUpdates[spl_object_hash($entity)]);
} }
/** /**
* Checks whether an entity is registered to be checked in the unit of work. * Checks whether an entity is registered to be checked in the unit of work.
* *
@ -1250,6 +1271,8 @@ class UnitOfWork implements PropertyChangedListener
* Schedules an entity for deletion. * Schedules an entity for deletion.
* *
* @param object $entity * @param object $entity
*
* @return void
*/ */
public function scheduleForDelete($entity) public function scheduleForDelete($entity)
{ {
@ -1297,7 +1320,7 @@ class UnitOfWork implements PropertyChangedListener
/** /**
* Checks whether an entity is scheduled for insertion, update or deletion. * Checks whether an entity is scheduled for insertion, update or deletion.
* *
* @param $entity * @param object $entity
* *
* @return boolean * @return boolean
*/ */
@ -1317,12 +1340,13 @@ class UnitOfWork implements PropertyChangedListener
* the root entity. * the root entity.
* *
* @ignore * @ignore
*
* @param object $entity The entity to register. * @param object $entity The entity to register.
* *
* @throws ORMInvalidArgumentException * @return boolean TRUE if the registration was successful, FALSE if the identity of
* the entity in question is already managed.
* *
* @return boolean TRUE if the registration was successful, FALSE if the identity of * @throws ORMInvalidArgumentException
* the entity in question is already managed.
*/ */
public function addToIdentityMap($entity) public function addToIdentityMap($entity)
{ {
@ -1347,11 +1371,11 @@ class UnitOfWork implements PropertyChangedListener
/** /**
* Gets the state of an entity with regard to the current unit of work. * Gets the state of an entity with regard to the current unit of work.
* *
* @param object $entity * @param object $entity
* @param integer $assume The state to assume if the state is not yet known (not MANAGED or REMOVED). * @param int|null $assume The state to assume if the state is not yet known (not MANAGED or REMOVED).
* This parameter can be set to improve performance of entity state detection * This parameter can be set to improve performance of entity state detection
* by potentially avoiding a database lookup if the distinction between NEW and DETACHED * by potentially avoiding a database lookup if the distinction between NEW and DETACHED
* is either known or does not matter for the caller of the method. * is either known or does not matter for the caller of the method.
* *
* @return int The entity state. * @return int The entity state.
*/ */
@ -1427,11 +1451,12 @@ class UnitOfWork implements PropertyChangedListener
* entity from the persistence management of Doctrine. * entity from the persistence management of Doctrine.
* *
* @ignore * @ignore
*
* @param object $entity * @param object $entity
* *
* @throws ORMInvalidArgumentException
*
* @return boolean * @return boolean
*
* @throws ORMInvalidArgumentException
*/ */
public function removeFromIdentityMap($entity) public function removeFromIdentityMap($entity)
{ {
@ -1462,6 +1487,7 @@ class UnitOfWork implements PropertyChangedListener
* Gets an entity in the identity map by its identifier hash. * Gets an entity in the identity map by its identifier hash.
* *
* @ignore * @ignore
*
* @param string $idHash * @param string $idHash
* @param string $rootClassName * @param string $rootClassName
* *
@ -1478,10 +1504,11 @@ class UnitOfWork implements PropertyChangedListener
* the given hash, FALSE is returned. * the given hash, FALSE is returned.
* *
* @ignore * @ignore
*
* @param string $idHash * @param string $idHash
* @param string $rootClassName * @param string $rootClassName
* *
* @return mixed The found entity or FALSE. * @return object|bool The found entity or FALSE.
*/ */
public function tryGetByIdHash($idHash, $rootClassName) public function tryGetByIdHash($idHash, $rootClassName)
{ {
@ -1522,6 +1549,7 @@ class UnitOfWork implements PropertyChangedListener
* Checks whether an identifier hash exists in the identity map. * Checks whether an identifier hash exists in the identity map.
* *
* @ignore * @ignore
*
* @param string $idHash * @param string $idHash
* @param string $rootClassName * @param string $rootClassName
* *
@ -1536,6 +1564,8 @@ class UnitOfWork implements PropertyChangedListener
* Persists an entity as part of the current unit of work. * Persists an entity as part of the current unit of work.
* *
* @param object $entity The entity to persist. * @param object $entity The entity to persist.
*
* @return void
*/ */
public function persist($entity) public function persist($entity)
{ {
@ -1550,8 +1580,10 @@ class UnitOfWork implements PropertyChangedListener
* This method is internally called during persist() cascades as it tracks * This method is internally called during persist() cascades as it tracks
* the already visited entities to prevent infinite recursions. * the already visited entities to prevent infinite recursions.
* *
* @param object $entity The entity to persist. * @param object $entity The entity to persist.
* @param array $visited The already visited entities. * @param array $visited The already visited entities.
*
* @return void
* *
* @throws ORMInvalidArgumentException * @throws ORMInvalidArgumentException
* @throws UnexpectedValueException * @throws UnexpectedValueException
@ -1608,6 +1640,8 @@ class UnitOfWork implements PropertyChangedListener
* Deletes an entity as part of the current unit of work. * Deletes an entity as part of the current unit of work.
* *
* @param object $entity The entity to remove. * @param object $entity The entity to remove.
*
* @return void
*/ */
public function remove($entity) public function remove($entity)
{ {
@ -1622,8 +1656,10 @@ class UnitOfWork implements PropertyChangedListener
* This method is internally called during delete() cascades as it tracks * This method is internally called during delete() cascades as it tracks
* the already visited entities to prevent infinite recursions. * the already visited entities to prevent infinite recursions.
* *
* @param object $entity The entity to delete. * @param object $entity The entity to delete.
* @param array $visited The map of the already visited entities. * @param array $visited The map of the already visited entities.
*
* @return void
* *
* @throws ORMInvalidArgumentException If the instance is a detached entity. * @throws ORMInvalidArgumentException If the instance is a detached entity.
* @throws UnexpectedValueException * @throws UnexpectedValueException
@ -1676,11 +1712,11 @@ class UnitOfWork implements PropertyChangedListener
* *
* @param object $entity * @param object $entity
* *
* @return object The managed copy of the entity.
*
* @throws OptimisticLockException If the entity uses optimistic locking through a version * @throws OptimisticLockException If the entity uses optimistic locking through a version
* attribute and the version check against the managed copy fails. * attribute and the version check against the managed copy fails.
* *
* @return object The managed copy of the entity.
*
* @todo Require active transaction!? OptimisticLockException may result in undefined state!? * @todo Require active transaction!? OptimisticLockException may result in undefined state!?
*/ */
public function merge($entity) public function merge($entity)
@ -1693,17 +1729,17 @@ class UnitOfWork implements PropertyChangedListener
/** /**
* Executes a merge operation on an entity. * Executes a merge operation on an entity.
* *
* @param object $entity * @param object $entity
* @param array $visited * @param array $visited
* @param object $prevManagedCopy * @param object|null $prevManagedCopy
* @param array $assoc * @param array|null $assoc
*
* @return object The managed copy of the entity.
* *
* @throws OptimisticLockException If the entity uses optimistic locking through a version * @throws OptimisticLockException If the entity uses optimistic locking through a version
* attribute and the version check against the managed copy fails. * attribute and the version check against the managed copy fails.
* @throws ORMInvalidArgumentException If the entity instance is NEW. * @throws ORMInvalidArgumentException If the entity instance is NEW.
* @throws EntityNotFoundException * @throws EntityNotFoundException
*
* @return object The managed copy of the entity.
*/ */
private function doMerge($entity, array &$visited, $prevManagedCopy = null, $assoc = null) private function doMerge($entity, array &$visited, $prevManagedCopy = null, $assoc = null)
{ {
@ -1895,6 +1931,8 @@ class UnitOfWork implements PropertyChangedListener
* no longer be managed by Doctrine. * no longer be managed by Doctrine.
* *
* @param object $entity The entity to detach. * @param object $entity The entity to detach.
*
* @return void
*/ */
public function detach($entity) public function detach($entity)
{ {
@ -1906,9 +1944,11 @@ class UnitOfWork implements PropertyChangedListener
/** /**
* Executes a detach operation on the given entity. * Executes a detach operation on the given entity.
* *
* @param object $entity * @param object $entity
* @param array $visited * @param array $visited
* @param boolean $noCascade if true, don't cascade detach operation * @param boolean $noCascade if true, don't cascade detach operation.
*
* @return void
*/ */
private function doDetach($entity, array &$visited, $noCascade = false) private function doDetach($entity, array &$visited, $noCascade = false)
{ {
@ -1951,6 +1991,8 @@ class UnitOfWork implements PropertyChangedListener
* *
* @param object $entity The entity to refresh. * @param object $entity The entity to refresh.
* *
* @return void
*
* @throws InvalidArgumentException If the entity is not MANAGED. * @throws InvalidArgumentException If the entity is not MANAGED.
*/ */
public function refresh($entity) public function refresh($entity)
@ -1963,8 +2005,10 @@ class UnitOfWork implements PropertyChangedListener
/** /**
* Executes a refresh operation on an entity. * Executes a refresh operation on an entity.
* *
* @param object $entity The entity to refresh. * @param object $entity The entity to refresh.
* @param array $visited The already visited entities during cascades. * @param array $visited The already visited entities during cascades.
*
* @return void
* *
* @throws ORMInvalidArgumentException If the entity is not MANAGED. * @throws ORMInvalidArgumentException If the entity is not MANAGED.
*/ */
@ -1996,7 +2040,9 @@ class UnitOfWork implements PropertyChangedListener
* Cascades a refresh operation to associated entities. * Cascades a refresh operation to associated entities.
* *
* @param object $entity * @param object $entity
* @param array $visited * @param array $visited
*
* @return void
*/ */
private function cascadeRefresh($entity, array &$visited) private function cascadeRefresh($entity, array &$visited)
{ {
@ -2037,7 +2083,9 @@ class UnitOfWork implements PropertyChangedListener
* Cascades a detach operation to associated entities. * Cascades a detach operation to associated entities.
* *
* @param object $entity * @param object $entity
* @param array $visited * @param array $visited
*
* @return void
*/ */
private function cascadeDetach($entity, array &$visited) private function cascadeDetach($entity, array &$visited)
{ {
@ -2079,7 +2127,9 @@ class UnitOfWork implements PropertyChangedListener
* *
* @param object $entity * @param object $entity
* @param object $managedCopy * @param object $managedCopy
* @param array $visited * @param array $visited
*
* @return void
*/ */
private function cascadeMerge($entity, $managedCopy, array &$visited) private function cascadeMerge($entity, $managedCopy, array &$visited)
{ {
@ -2116,7 +2166,7 @@ class UnitOfWork implements PropertyChangedListener
* Cascades the save operation to associated entities. * Cascades the save operation to associated entities.
* *
* @param object $entity * @param object $entity
* @param array $visited * @param array $visited
* *
* @return void * @return void
*/ */
@ -2159,7 +2209,9 @@ class UnitOfWork implements PropertyChangedListener
* Cascades the delete operation to associated entities. * Cascades the delete operation to associated entities.
* *
* @param object $entity * @param object $entity
* @param array $visited * @param array $visited
*
* @return void
*/ */
private function cascadeRemove($entity, array &$visited) private function cascadeRemove($entity, array &$visited)
{ {
@ -2200,14 +2252,14 @@ class UnitOfWork implements PropertyChangedListener
* Acquire a lock on the given entity. * Acquire a lock on the given entity.
* *
* @param object $entity * @param object $entity
* @param int $lockMode * @param int $lockMode
* @param int $lockVersion * @param int $lockVersion
*
* @return void
* *
* @throws ORMInvalidArgumentException * @throws ORMInvalidArgumentException
* @throws TransactionRequiredException * @throws TransactionRequiredException
* @throws OptimisticLockException * @throws OptimisticLockException
*
* @return void
*/ */
public function lock($entity, $lockMode, $lockVersion = null) public function lock($entity, $lockMode, $lockVersion = null)
{ {
@ -2271,7 +2323,9 @@ class UnitOfWork implements PropertyChangedListener
/** /**
* Clears the UnitOfWork. * Clears the UnitOfWork.
* *
* @param string $entityName if given, only entities of this type will get detached * @param string|null $entityName if given, only entities of this type will get detached.
*
* @return void
*/ */
public function clear($entityName = null) public function clear($entityName = null)
{ {
@ -2317,7 +2371,10 @@ class UnitOfWork implements PropertyChangedListener
* UnitOfWork. * UnitOfWork.
* *
* @ignore * @ignore
*
* @param object $entity * @param object $entity
*
* @return void
*/ */
public function scheduleOrphanRemoval($entity) public function scheduleOrphanRemoval($entity)
{ {
@ -2329,6 +2386,8 @@ class UnitOfWork implements PropertyChangedListener
* Schedules a complete collection for removal when this UnitOfWork commits. * Schedules a complete collection for removal when this UnitOfWork commits.
* *
* @param PersistentCollection $coll * @param PersistentCollection $coll
*
* @return void
*/ */
public function scheduleCollectionDeletion(PersistentCollection $coll) public function scheduleCollectionDeletion(PersistentCollection $coll)
{ {
@ -2374,11 +2433,13 @@ class UnitOfWork implements PropertyChangedListener
* Creates an entity. Used for reconstitution of persistent entities. * Creates an entity. Used for reconstitution of persistent entities.
* *
* @ignore * @ignore
*
* @param string $className The name of the entity class. * @param string $className The name of the entity class.
* @param array $data The data for the entity. * @param array $data The data for the entity.
* @param array $hints Any hints to account for during reconstitution/lookup of the entity. * @param array $hints Any hints to account for during reconstitution/lookup of the entity.
* *
* @return object The managed entity instance. * @return object The managed entity instance.
*
* @internal Highly performance-sensitive method. * @internal Highly performance-sensitive method.
* *
* @todo Rename: getOrCreateEntity * @todo Rename: getOrCreateEntity
@ -2653,6 +2714,7 @@ class UnitOfWork implements PropertyChangedListener
* @param \Doctrine\ORM\PersistentCollection $collection The collection to initialize. * @param \Doctrine\ORM\PersistentCollection $collection The collection to initialize.
* *
* @return void * @return void
*
* @todo Maybe later move to EntityManager#initialize($proxyOrCollection). See DDC-733. * @todo Maybe later move to EntityManager#initialize($proxyOrCollection). See DDC-733.
*/ */
public function loadCollection(PersistentCollection $collection) public function loadCollection(PersistentCollection $collection)
@ -2702,6 +2764,11 @@ class UnitOfWork implements PropertyChangedListener
/** /**
* @ignore * @ignore
*
* @param object $entity
* @param array $data
*
* @return void
*/ */
public function setOriginalEntityData($entity, array $data) public function setOriginalEntityData($entity, array $data)
{ {
@ -2713,9 +2780,12 @@ class UnitOfWork implements PropertyChangedListener
* Sets a property value of the original data array of an entity. * Sets a property value of the original data array of an entity.
* *
* @ignore * @ignore
*
* @param string $oid * @param string $oid
* @param string $property * @param string $property
* @param mixed $value * @param mixed $value
*
* @return void
*/ */
public function setOriginalEntityProperty($oid, $property, $value) public function setOriginalEntityProperty($oid, $property, $value)
{ {
@ -2765,7 +2835,7 @@ class UnitOfWork implements PropertyChangedListener
* Tries to find an entity with the given identifier in the identity map of * Tries to find an entity with the given identifier in the identity map of
* this UnitOfWork. * this UnitOfWork.
* *
* @param mixed $id The entity identifier to look for. * @param mixed $id The entity identifier to look for.
* @param string $rootClassName The name of the root class of the mapped entity hierarchy. * @param string $rootClassName The name of the root class of the mapped entity hierarchy.
* *
* @return mixed Returns the entity with the specified identifier if it exists in * @return mixed Returns the entity with the specified identifier if it exists in
@ -2786,6 +2856,9 @@ class UnitOfWork implements PropertyChangedListener
* Schedules an entity for dirty-checking at commit-time. * Schedules an entity for dirty-checking at commit-time.
* *
* @param object $entity The entity to schedule for dirty-checking. * @param object $entity The entity to schedule for dirty-checking.
*
* @return void
*
* @todo Rename: scheduleForSynchronization * @todo Rename: scheduleForSynchronization
*/ */
public function scheduleForDirtyCheck($entity) public function scheduleForDirtyCheck($entity)
@ -2821,7 +2894,7 @@ class UnitOfWork implements PropertyChangedListener
/** /**
* Gets the EntityPersister for an Entity. * Gets the EntityPersister for an Entity.
* *
* @param string $entityName The name of the Entity. * @param string $entityName The name of the Entity.
* *
* @return \Doctrine\ORM\Persisters\BasicEntityPersister * @return \Doctrine\ORM\Persisters\BasicEntityPersister
*/ */
@ -2890,8 +2963,10 @@ class UnitOfWork implements PropertyChangedListener
* Registers an entity as managed. * Registers an entity as managed.
* *
* @param object $entity The entity. * @param object $entity The entity.
* @param array $id The identifier values. * @param array $id The identifier values.
* @param array $data The original entity data. * @param array $data The original entity data.
*
* @return void
*/ */
public function registerManaged($entity, array $id, array $data) public function registerManaged($entity, array $id, array $data)
{ {
@ -2913,6 +2988,8 @@ class UnitOfWork implements PropertyChangedListener
* Clears the property changeset of the entity with the given OID. * Clears the property changeset of the entity with the given OID.
* *
* @param string $oid The entity's OID. * @param string $oid The entity's OID.
*
* @return void
*/ */
public function clearEntityChangeSet($oid) public function clearEntityChangeSet($oid)
{ {
@ -2924,10 +3001,12 @@ class UnitOfWork implements PropertyChangedListener
/** /**
* Notifies this UnitOfWork of a property change in an entity. * Notifies this UnitOfWork of a property change in an entity.
* *
* @param object $entity The entity that owns the property. * @param object $entity The entity that owns the property.
* @param string $propertyName The name of the property that changed. * @param string $propertyName The name of the property that changed.
* @param mixed $oldValue The old value of the property. * @param mixed $oldValue The old value of the property.
* @param mixed $newValue The new value of the property. * @param mixed $newValue The new value of the property.
*
* @return void
*/ */
public function propertyChanged($entity, $propertyName, $oldValue, $newValue) public function propertyChanged($entity, $propertyName, $oldValue, $newValue)
{ {
@ -3001,7 +3080,7 @@ class UnitOfWork implements PropertyChangedListener
/** /**
* Helper method to initialize a lazy loading proxy or persistent collection. * Helper method to initialize a lazy loading proxy or persistent collection.
* *
* @param object * @param object $obj
* *
* @return void * @return void
*/ */
@ -3021,7 +3100,7 @@ class UnitOfWork implements PropertyChangedListener
/** /**
* Helper method to show an object as string. * Helper method to show an object as string.
* *
* @param object $obj * @param object $obj
* *
* @return string * @return string
*/ */
@ -3036,12 +3115,11 @@ class UnitOfWork implements PropertyChangedListener
* This operation cannot be undone as some parts of the UnitOfWork now keep gathering information * This operation cannot be undone as some parts of the UnitOfWork now keep gathering information
* on this object that might be necessary to perform a correct update. * on this object that might be necessary to perform a correct update.
* *
*
* @param object $object * @param object $object
* *
* @throws ORMInvalidArgumentException
*
* @return void * @return void
*
* @throws ORMInvalidArgumentException
*/ */
public function markReadOnly($object) public function markReadOnly($object)
{ {
@ -3057,9 +3135,9 @@ class UnitOfWork implements PropertyChangedListener
* *
* @param object $object * @param object $object
* *
* @throws ORMInvalidArgumentException
*
* @return bool * @return bool
*
* @throws ORMInvalidArgumentException
*/ */
public function isReadOnly($object) public function isReadOnly($object)
{ {

View file

@ -42,6 +42,7 @@ class Version
* Compares a Doctrine version with the current one. * Compares a Doctrine version with the current one.
* *
* @param string $version Doctrine version to compare. * @param string $version Doctrine version to compare.
*
* @return int Returns -1 if older, 0 if it is the same, 1 if version * @return int Returns -1 if older, 0 if it is the same, 1 if version
* passed as argument is newer. * passed as argument is newer.
*/ */