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

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