Files
yii2/tests/data/ar/CustomerQuery.php
Dmitriy Derepko 06bd683d21 Add generic types for ActiveRecord and Container (#20325)
Co-authored-by: Alexander Makarov <sam@rmcreative.ru>
2025-02-21 19:00:43 +03:00

35 lines
629 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.
* @extends ActiveQuery<CustomerWithAlias>
*/
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;
}
}