Files
yii2/tests/data/ar/CustomerQuery.php
2022-08-03 12:32:18 +03:00

34 lines
586 B
PHP

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