mirror of
https://github.com/yiisoft/yii2.git
synced 2026-03-06 07:24:44 +01:00
16 lines
207 B
PHP
16 lines
207 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;
|
|
}
|
|
}
|
|
|