mirror of
https://github.com/yiisoft/yii2.git
synced 2026-03-04 14:34:49 +01:00
19 lines
234 B
PHP
19 lines
234 B
PHP
<?php
|
|
|
|
namespace yiiunit\data\ar;
|
|
|
|
use yii\db\ActiveQuery;
|
|
|
|
/**
|
|
* CustomerQuery
|
|
*/
|
|
class CustomerQuery extends ActiveQuery
|
|
{
|
|
public function active()
|
|
{
|
|
$this->andWhere('[[status]]=1');
|
|
|
|
return $this;
|
|
}
|
|
}
|