mirror of
https://github.com/yiisoft/yii2.git
synced 2025-12-06 05:08:45 +08:00
19 lines
230 B
PHP
19 lines
230 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;
|
|
}
|
|
}
|