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

Use @return $this instead of @return static for consistency

This commit is contained in:
Damien Gavard 2015-09-06 21:46:56 +02:00 committed by Marco Pivetta
parent 5687347d60
commit 9b4dadade0

View file

@ -183,7 +183,7 @@ abstract class AbstractQuery
* *
* @param boolean $cacheable * @param boolean $cacheable
* *
* @return static This query instance. * @return $this This query instance.
*/ */
public function setCacheable($cacheable) public function setCacheable($cacheable)
{ {
@ -203,7 +203,7 @@ abstract class AbstractQuery
/** /**
* @param string $cacheRegion * @param string $cacheRegion
* *
* @return static This query instance. * @return $this This query instance.
*/ */
public function setCacheRegion($cacheRegion) public function setCacheRegion($cacheRegion)
{ {
@ -243,7 +243,7 @@ abstract class AbstractQuery
* *
* @param integer $lifetime * @param integer $lifetime
* *
* @return static This query instance. * @return $this This query instance.
*/ */
public function setLifetime($lifetime) public function setLifetime($lifetime)
{ {
@ -263,7 +263,7 @@ abstract class AbstractQuery
/** /**
* @param integer $cacheMode * @param integer $cacheMode
* *
* @return static This query instance. * @return $this This query instance.
*/ */
public function setCacheMode($cacheMode) public function setCacheMode($cacheMode)
{ {
@ -340,7 +340,7 @@ abstract class AbstractQuery
* *
* @param \Doctrine\Common\Collections\ArrayCollection|array $parameters * @param \Doctrine\Common\Collections\ArrayCollection|array $parameters
* *
* @return static This query instance. * @return $this This query instance.
*/ */
public function setParameters($parameters) public function setParameters($parameters)
{ {
@ -369,7 +369,7 @@ abstract class AbstractQuery
* 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 static This query instance. * @return $this This query instance.
*/ */
public function setParameter($key, $value, $type = null) public function setParameter($key, $value, $type = null)
{ {
@ -441,7 +441,7 @@ abstract class AbstractQuery
* *
* @param \Doctrine\ORM\Query\ResultSetMapping $rsm * @param \Doctrine\ORM\Query\ResultSetMapping $rsm
* *
* @return static This query instance. * @return $this This query instance.
*/ */
public function setResultSetMapping(Query\ResultSetMapping $rsm) public function setResultSetMapping(Query\ResultSetMapping $rsm)
{ {
@ -498,7 +498,7 @@ abstract class AbstractQuery
* *
* @param \Doctrine\DBAL\Cache\QueryCacheProfile $profile * @param \Doctrine\DBAL\Cache\QueryCacheProfile $profile
* *
* @return static This query instance. * @return $this This query instance.
*/ */
public function setHydrationCacheProfile(QueryCacheProfile $profile = null) public function setHydrationCacheProfile(QueryCacheProfile $profile = null)
{ {
@ -528,7 +528,7 @@ abstract class AbstractQuery
* *
* @param \Doctrine\DBAL\Cache\QueryCacheProfile $profile * @param \Doctrine\DBAL\Cache\QueryCacheProfile $profile
* *
* @return static This query instance. * @return $this This query instance.
*/ */
public function setResultCacheProfile(QueryCacheProfile $profile = null) public function setResultCacheProfile(QueryCacheProfile $profile = null)
{ {
@ -547,7 +547,7 @@ abstract class AbstractQuery
* *
* @param \Doctrine\Common\Cache\Cache|null $resultCacheDriver Cache driver * @param \Doctrine\Common\Cache\Cache|null $resultCacheDriver Cache driver
* *
* @return static This query instance. * @return $this This query instance.
* *
* @throws ORMException * @throws ORMException
*/ */
@ -588,7 +588,7 @@ abstract class AbstractQuery
* @param integer $lifetime * @param integer $lifetime
* @param string $resultCacheId * @param string $resultCacheId
* *
* @return static This query instance. * @return $this This query instance.
*/ */
public function useResultCache($bool, $lifetime = null, $resultCacheId = null) public function useResultCache($bool, $lifetime = null, $resultCacheId = null)
{ {
@ -609,7 +609,7 @@ abstract class AbstractQuery
* *
* @param integer $lifetime How long the cache entry is valid. * @param integer $lifetime How long the cache entry is valid.
* *
* @return static This query instance. * @return $this This query instance.
*/ */
public function setResultCacheLifetime($lifetime) public function setResultCacheLifetime($lifetime)
{ {
@ -639,7 +639,7 @@ abstract class AbstractQuery
* *
* @param boolean $expire Whether or not to force resultset cache expiration. * @param boolean $expire Whether or not to force resultset cache expiration.
* *
* @return static This query instance. * @return $this This query instance.
*/ */
public function expireResultCache($expire = true) public function expireResultCache($expire = true)
{ {
@ -675,7 +675,7 @@ abstract class AbstractQuery
* @param string $assocName * @param string $assocName
* @param int $fetchMode * @param int $fetchMode
* *
* @return static This query instance. * @return $this This query instance.
*/ */
public function setFetchMode($class, $assocName, $fetchMode) public function setFetchMode($class, $assocName, $fetchMode)
{ {
@ -694,7 +694,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 static This query instance. * @return $this This query instance.
*/ */
public function setHydrationMode($hydrationMode) public function setHydrationMode($hydrationMode)
{ {
@ -839,7 +839,7 @@ abstract class AbstractQuery
* @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 static This query instance. * @return $this This query instance.
*/ */
public function setHint($name, $value) public function setHint($name, $value)
{ {
@ -1051,7 +1051,7 @@ abstract class AbstractQuery
* *
* @param string $id * @param string $id
* *
* @return static This query instance. * @return $this This query instance.
*/ */
public function setResultCacheId($id) public function setResultCacheId($id)
{ {