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