mirror of
https://github.com/yiisoft/yii2.git
synced 2026-03-09 16:57:53 +01:00
19 lines
260 B
PHP
19 lines
260 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;
|
|
}
|
|
}
|