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

19 lines
260 B
PHP

<?php
namespace yiiunit\data\ar\elasticsearch;
use yii\elasticsearch\ActiveQuery;
/**
* CustomerQuery
*/
class CustomerQuery extends ActiveQuery
{
public function active()
{
$this->andWhere(['status' => 1]);
return $this;
}
}