Files
yii2/tests/unit/data/ar/sphinx/ArticleIndexQuery.php
2014-01-17 23:01:13 +04:00

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