Files
yii2/tests/data/ar/CustomerQuery.php
2025-09-30 01:33:08 +03:00

38 lines
662 B
PHP

<?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
declare(strict_types=1);
namespace yiiunit\data\ar;
use yii\db\ActiveQuery;
/**
* CustomerQuery.
* @extends ActiveQuery<CustomerWithAlias>
*/
class CustomerQuery extends ActiveQuery
{
public static $joinWithProfile = false;
public function init(): void
{
if (static::$joinWithProfile) {
$this->innerJoinWith('profile');
}
parent::init();
}
public function active()
{
$this->andWhere('[[status]]=1');
return $this;
}
}