mirror of
https://github.com/yiisoft/yii2.git
synced 2025-12-03 08:28:57 +08:00
19 lines
252 B
PHP
19 lines
252 B
PHP
<?php
|
|
|
|
namespace yiiunit\data\ar\mongodb;
|
|
|
|
use yii\mongodb\ActiveQuery;
|
|
|
|
/**
|
|
* CustomerQuery
|
|
*/
|
|
class CustomerQuery extends ActiveQuery
|
|
{
|
|
public function activeOnly()
|
|
{
|
|
$this->andWhere(['status' => 2]);
|
|
|
|
return $this;
|
|
}
|
|
}
|