mirror of
https://github.com/yiisoft/yii2.git
synced 2025-12-03 00:18:12 +08:00
19 lines
260 B
PHP
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;
|
|
}
|
|
}
|