mirror of
https://github.com/yiisoft/yii2.git
synced 2026-03-10 17:27:58 +01:00
16 lines
237 B
PHP
16 lines
237 B
PHP
<?php
|
|
namespace yiiunit\data\ar\sphinx;
|
|
use yii\sphinx\ActiveQuery;
|
|
|
|
/**
|
|
* ArticleIndexQuery
|
|
*/
|
|
class ArticleIndexQuery extends ActiveQuery
|
|
{
|
|
public function favoriteAuthor()
|
|
{
|
|
$this->andWhere('author_id=1');
|
|
return $this;
|
|
}
|
|
}
|
|
|