style(legacy): fix code format with php-cs-fixer (#1674)

This commit is contained in:
Jonas L 2022-03-14 11:15:04 +01:00 committed by GitHub
parent e1dc69af9e
commit 69d8eae845
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
111 changed files with 1163 additions and 1163 deletions

View file

@ -94,7 +94,7 @@ class CcShow extends BaseCcShow
*/
public function isRepeating()
{
//get all cc_show_day entries that are repeating
// get all cc_show_day entries that are repeating
$ccShowDays = CcShowDaysQuery::create()
->filterByDbShowId($this->id)
->filterByDbRepeatType(0, Criteria::GREATER_EQUAL)
@ -113,7 +113,7 @@ class CcShow extends BaseCcShow
*/
public function getEditedRepeatingInstanceIds()
{
//get cc_show_days that have been edited (not repeating)
// get cc_show_days that have been edited (not repeating)
$ccShowDays = CcShowDaysQuery::create()
->filterByDbShowId($this->id)
->filterByDbRepeatType(-1)
@ -123,7 +123,7 @@ class CcShow extends BaseCcShow
$utc = new DateTimeZone('UTC');
foreach ($ccShowDays as $day) {
//convert to UTC
// convert to UTC
$starts = new DateTime(
$day->getDbFirstShow() . ' ' . $day->getDbStartTime(),
new DateTimeZone($day->getDbTimezone())
@ -301,7 +301,7 @@ class CcShow extends BaseCcShow
return $instanceIds;
}
//what is this??
// what is this??
public function getOtherInstances($instanceId)
{
return CcShowInstancesQuery::create()