Run pre-commit on legacy code

This commit is contained in:
jo 2021-10-12 11:17:57 +02:00
parent fea11ac752
commit 83b7e4162e
323 changed files with 6126 additions and 6462 deletions

View file

@ -4,7 +4,7 @@
/**
* Base class that represents a query for the 'cc_show_schedule' table.
*
*
*
*
* @method CcShowScheduleQuery orderByDbId($order = Criteria::ASC) Order by the id column
* @method CcShowScheduleQuery orderByDbInstanceId($order = Criteria::ASC) Order by the instance_id column
@ -114,7 +114,7 @@ abstract class BaseCcShowScheduleQuery extends ModelCriteria
* @return PropelObjectCollection|array|mixed the list of results, formatted by the current formatter
*/
public function findPks($keys, $con = null)
{
{
$criteria = $this->isKeepQuery() ? clone $this : $this;
return $this
->filterByPrimaryKeys($keys)
@ -147,7 +147,7 @@ abstract class BaseCcShowScheduleQuery extends ModelCriteria
/**
* Filter the query on the id column
*
*
* @param int|array $dbId The value to use as filter.
* Accepts an associative array('min' => $minValue, 'max' => $maxValue)
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
@ -164,7 +164,7 @@ abstract class BaseCcShowScheduleQuery extends ModelCriteria
/**
* Filter the query on the instance_id column
*
*
* @param int|array $dbInstanceId The value to use as filter.
* Accepts an associative array('min' => $minValue, 'max' => $maxValue)
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
@ -195,7 +195,7 @@ abstract class BaseCcShowScheduleQuery extends ModelCriteria
/**
* Filter the query on the position column
*
*
* @param int|array $dbPosition The value to use as filter.
* Accepts an associative array('min' => $minValue, 'max' => $maxValue)
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
@ -226,7 +226,7 @@ abstract class BaseCcShowScheduleQuery extends ModelCriteria
/**
* Filter the query on the group_id column
*
*
* @param int|array $dbGroupId The value to use as filter.
* Accepts an associative array('min' => $minValue, 'max' => $maxValue)
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
@ -271,7 +271,7 @@ abstract class BaseCcShowScheduleQuery extends ModelCriteria
/**
* Adds a JOIN clause to the query using the CcShowInstances relation
*
*
* @param string $relationAlias optional alias for the relation
* @param string $joinType Accepted values are null, 'left join', 'right join', 'inner join'
*
@ -281,7 +281,7 @@ abstract class BaseCcShowScheduleQuery extends ModelCriteria
{
$tableMap = $this->getTableMap();
$relationMap = $tableMap->getRelation('CcShowInstances');
// create a ModelJoin object for this join
$join = new ModelJoin();
$join->setJoinType($joinType);
@ -289,7 +289,7 @@ abstract class BaseCcShowScheduleQuery extends ModelCriteria
if ($previousJoin = $this->getPreviousJoin()) {
$join->setPreviousJoin($previousJoin);
}
// add the ModelJoin to the current object
if($relationAlias) {
$this->addAlias($relationAlias, $relationMap->getRightTable()->getName());
@ -297,7 +297,7 @@ abstract class BaseCcShowScheduleQuery extends ModelCriteria
} else {
$this->addJoinObject($join, 'CcShowInstances');
}
return $this;
}
@ -305,7 +305,7 @@ abstract class BaseCcShowScheduleQuery extends ModelCriteria
* Use the CcShowInstances relation CcShowInstances object
*
* @see useQuery()
*
*
* @param string $relationAlias optional alias for the relation,
* to be used as main alias in the secondary query
* @param string $joinType Accepted values are null, 'left join', 'right join', 'inner join'
@ -331,7 +331,7 @@ abstract class BaseCcShowScheduleQuery extends ModelCriteria
if ($ccShowSchedule) {
$this->addUsingAlias(CcShowSchedulePeer::ID, $ccShowSchedule->getDbId(), Criteria::NOT_EQUAL);
}
return $this;
}