Files
yii2/tests/unit/data/ar/mongodb/file/CustomerFileQuery.php
2014-01-17 23:24:31 +04:00

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;
}
}