1
0
mirror of synced 2025-03-06 12:56:10 +03:00

#1496 s/$this/self

This commit is contained in:
Marco Pivetta 2015-12-11 18:27:19 +01:00
parent 9b4dadade0
commit 00718f6bf7
2 changed files with 52 additions and 50 deletions

View File

@ -183,7 +183,7 @@ abstract class AbstractQuery
* *
* @param boolean $cacheable * @param boolean $cacheable
* *
* @return $this This query instance. * @return static 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 $this This query instance. * @return static 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 $this This query instance. * @return static 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 $this This query instance. * @return static 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 $this This query instance. * @return static 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 $this This query instance. * @return static 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 $this This query instance. * @return static 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 $this This query instance. * @return static 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 $this This query instance. * @return static 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 $this This query instance. * @return static 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 $this This query instance. * @return static 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 $this This query instance. * @return static 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 $this This query instance. * @return static 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 $this This query instance. * @return static 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 $this This query instance. * @return static 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 $this This query instance. * @return static 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 $this This query instance. * @return static This query instance.
*/ */
public function setResultCacheId($id) public function setResultCacheId($id)
{ {

View File

@ -183,7 +183,7 @@ class QueryBuilder
* *
* @param boolean $cacheable * @param boolean $cacheable
* *
* @return $this * @return self
*/ */
public function setCacheable($cacheable) public function setCacheable($cacheable)
{ {
@ -203,7 +203,7 @@ class QueryBuilder
/** /**
* @param string $cacheRegion * @param string $cacheRegion
* *
* @return $this * @return self
*/ */
public function setCacheRegion($cacheRegion) public function setCacheRegion($cacheRegion)
{ {
@ -235,7 +235,7 @@ class QueryBuilder
* *
* @param integer $lifetime * @param integer $lifetime
* *
* @return $this * @return self
*/ */
public function setLifetime($lifetime) public function setLifetime($lifetime)
{ {
@ -255,7 +255,7 @@ class QueryBuilder
/** /**
* @param integer $cacheMode * @param integer $cacheMode
* *
* @return $this * @return self
*/ */
public function setCacheMode($cacheMode) public function setCacheMode($cacheMode)
{ {
@ -527,7 +527,7 @@ class QueryBuilder
* @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 $this This QueryBuilder instance. * @return self
*/ */
public function setParameter($key, $value, $type = null) public function setParameter($key, $value, $type = null)
{ {
@ -571,7 +571,7 @@ class QueryBuilder
* *
* @param \Doctrine\Common\Collections\ArrayCollection|array $parameters The query parameters to set. * @param \Doctrine\Common\Collections\ArrayCollection|array $parameters The query parameters to set.
* *
* @return $this This QueryBuilder instance. * @return self
*/ */
public function setParameters($parameters) public function setParameters($parameters)
{ {
@ -629,7 +629,7 @@ class QueryBuilder
* *
* @param integer $firstResult The first result to return. * @param integer $firstResult The first result to return.
* *
* @return $this This QueryBuilder instance. * @return self
*/ */
public function setFirstResult($firstResult) public function setFirstResult($firstResult)
{ {
@ -654,7 +654,7 @@ class QueryBuilder
* *
* @param integer $maxResults The maximum number of results to retrieve. * @param integer $maxResults The maximum number of results to retrieve.
* *
* @return $this This QueryBuilder instance. * @return self
*/ */
public function setMaxResults($maxResults) public function setMaxResults($maxResults)
{ {
@ -684,7 +684,7 @@ class QueryBuilder
* @param object|array $dqlPart An Expr object. * @param object|array $dqlPart An Expr object.
* @param bool $append Whether to append (true) or replace (false). * @param bool $append Whether to append (true) or replace (false).
* *
* @return $this This QueryBuilder instance. * @return self
*/ */
public function add($dqlPartName, $dqlPart, $append = false) public function add($dqlPartName, $dqlPart, $append = false)
{ {
@ -747,7 +747,7 @@ class QueryBuilder
* *
* @param mixed $select The selection expressions. * @param mixed $select The selection expressions.
* *
* @return $this This QueryBuilder instance. * @return self
*/ */
public function select($select = null) public function select($select = null)
{ {
@ -774,7 +774,7 @@ class QueryBuilder
* *
* @param bool $flag * @param bool $flag
* *
* @return $this * @return self
*/ */
public function distinct($flag = true) public function distinct($flag = true)
{ {
@ -796,7 +796,7 @@ class QueryBuilder
* *
* @param mixed $select The selection expression. * @param mixed $select The selection expression.
* *
* @return $this This QueryBuilder instance. * @return self
*/ */
public function addSelect($select = null) public function addSelect($select = null)
{ {
@ -825,7 +825,7 @@ class QueryBuilder
* @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 $this This QueryBuilder instance. * @return self
*/ */
public function delete($delete = null, $alias = null) public function delete($delete = null, $alias = null)
{ {
@ -852,7 +852,7 @@ class QueryBuilder
* @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 $this This QueryBuilder instance. * @return self
*/ */
public function update($update = null, $alias = null) public function update($update = null, $alias = null)
{ {
@ -879,7 +879,7 @@ class QueryBuilder
* @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 $this This QueryBuilder instance. * @return self
*/ */
public function from($from, $alias, $indexBy = null) public function from($from, $alias, $indexBy = null)
{ {
@ -905,7 +905,7 @@ class QueryBuilder
* @param string $alias The root alias of the class. * @param string $alias The root alias of the class.
* @param string $indexBy The index for the from. * @param string $indexBy The index for the from.
* *
* @return $this This QueryBuilder instance. * @return self
* *
* @throws Query\QueryException * @throws Query\QueryException
*/ */
@ -951,7 +951,7 @@ class QueryBuilder
* @param string|null $condition The condition for the join. * @param string|null $condition The condition for the join.
* @param string|null $indexBy The index for the join. * @param string|null $indexBy The index for the join.
* *
* @return $this This QueryBuilder instance. * @return self
*/ */
public function join($join, $alias, $conditionType = null, $condition = null, $indexBy = null) public function join($join, $alias, $conditionType = null, $condition = null, $indexBy = null)
{ {
@ -977,7 +977,7 @@ class QueryBuilder
* @param string|null $condition The condition for the join. * @param string|null $condition The condition for the join.
* @param string|null $indexBy The index for the join. * @param string|null $indexBy The index for the join.
* *
* @return $this This QueryBuilder instance. * @return self
*/ */
public function innerJoin($join, $alias, $conditionType = null, $condition = null, $indexBy = null) public function innerJoin($join, $alias, $conditionType = null, $condition = null, $indexBy = null)
{ {
@ -1012,7 +1012,7 @@ class QueryBuilder
* @param string|null $condition The condition for the join. * @param string|null $condition The condition for the join.
* @param string|null $indexBy The index for the join. * @param string|null $indexBy The index for the join.
* *
* @return $this This QueryBuilder instance. * @return self
*/ */
public function leftJoin($join, $alias, $conditionType = null, $condition = null, $indexBy = null) public function leftJoin($join, $alias, $conditionType = null, $condition = null, $indexBy = null)
{ {
@ -1040,7 +1040,7 @@ class QueryBuilder
* @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 $this This QueryBuilder instance. * @return self
*/ */
public function set($key, $value) public function set($key, $value)
{ {
@ -1071,7 +1071,7 @@ class QueryBuilder
* *
* @param mixed $predicates The restriction predicates. * @param mixed $predicates The restriction predicates.
* *
* @return $this This QueryBuilder instance. * @return self
*/ */
public function where($predicates) public function where($predicates)
{ {
@ -1096,7 +1096,7 @@ class QueryBuilder
* *
* @param mixed $where The query restrictions. * @param mixed $where The query restrictions.
* *
* @return $this This QueryBuilder instance. * @return self
* *
* @see where() * @see where()
*/ */
@ -1129,7 +1129,7 @@ class QueryBuilder
* *
* @param mixed $where The WHERE statement. * @param mixed $where The WHERE statement.
* *
* @return $this * @return self
* *
* @see where() * @see where()
*/ */
@ -1161,7 +1161,7 @@ class QueryBuilder
* *
* @param string $groupBy The grouping expression. * @param string $groupBy The grouping expression.
* *
* @return $this This QueryBuilder instance. * @return self
*/ */
public function groupBy($groupBy) public function groupBy($groupBy)
{ {
@ -1181,7 +1181,7 @@ class QueryBuilder
* *
* @param string $groupBy The grouping expression. * @param string $groupBy The grouping expression.
* *
* @return $this This QueryBuilder instance. * @return self
*/ */
public function addGroupBy($groupBy) public function addGroupBy($groupBy)
{ {
@ -1194,7 +1194,7 @@ class QueryBuilder
* *
* @param mixed $having The restriction over the groups. * @param mixed $having The restriction over the groups.
* *
* @return $this This QueryBuilder instance. * @return self
*/ */
public function having($having) public function having($having)
{ {
@ -1211,7 +1211,7 @@ class QueryBuilder
* *
* @param mixed $having The restriction to append. * @param mixed $having The restriction to append.
* *
* @return $this This QueryBuilder instance. * @return self
*/ */
public function andHaving($having) public function andHaving($having)
{ {
@ -1234,7 +1234,7 @@ class QueryBuilder
* *
* @param mixed $having The restriction to add. * @param mixed $having The restriction to add.
* *
* @return $this This QueryBuilder instance. * @return self
*/ */
public function orHaving($having) public function orHaving($having)
{ {
@ -1258,7 +1258,7 @@ class QueryBuilder
* @param string|Expr\OrderBy $sort The ordering expression. * @param string|Expr\OrderBy $sort The ordering expression.
* @param string $order The ordering direction. * @param string $order The ordering direction.
* *
* @return $this This QueryBuilder instance. * @return self
*/ */
public function orderBy($sort, $order = null) public function orderBy($sort, $order = null)
{ {
@ -1273,7 +1273,7 @@ class QueryBuilder
* @param string|Expr\OrderBy $sort The ordering expression. * @param string|Expr\OrderBy $sort The ordering expression.
* @param string $order The ordering direction. * @param string $order The ordering direction.
* *
* @return $this This QueryBuilder instance. * @return self
*/ */
public function addOrderBy($sort, $order = null) public function addOrderBy($sort, $order = null)
{ {
@ -1290,7 +1290,9 @@ class QueryBuilder
* Overrides firstResult and maxResults if they're set. * Overrides firstResult and maxResults if they're set.
* *
* @param Criteria $criteria * @param Criteria $criteria
* @return $this *
* @return self
*
* @throws Query\QueryException * @throws Query\QueryException
*/ */
public function addCriteria(Criteria $criteria) public function addCriteria(Criteria $criteria)
@ -1451,7 +1453,7 @@ class QueryBuilder
* *
* @param array|null $parts * @param array|null $parts
* *
* @return $this * @return self
*/ */
public function resetDQLParts($parts = null) public function resetDQLParts($parts = null)
{ {
@ -1471,7 +1473,7 @@ class QueryBuilder
* *
* @param string $part * @param string $part
* *
* @return $this * @return self
*/ */
public function resetDQLPart($part) public function resetDQLPart($part)
{ {