Files
yii2/tests/unit/data/ar/mongodb/file/CustomerFileQuery.php
2014-03-16 10:46:21 +06:00

19 lines
270 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;
}
}