mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-10 02:13:17 +08:00
Sphinx Active Relation created
This commit is contained in:
22
extensions/sphinx/ActiveRelation.php
Normal file
22
extensions/sphinx/ActiveRelation.php
Normal file
@ -0,0 +1,22 @@
|
||||
<?php
|
||||
/**
|
||||
* @link http://www.yiiframework.com/
|
||||
* @copyright Copyright (c) 2008 Yii Software LLC
|
||||
* @license http://www.yiiframework.com/license/
|
||||
*/
|
||||
|
||||
namespace yii\sphinx;
|
||||
|
||||
use yii\db\ActiveRelationInterface;
|
||||
use yii\db\ActiveRelationTrait;
|
||||
|
||||
/**
|
||||
* Class ActiveRelation
|
||||
*
|
||||
* @author Paul Klimov <klimov.paul@gmail.com>
|
||||
* @since 2.0
|
||||
*/
|
||||
class ActiveRelation extends ActiveQuery implements ActiveRelationInterface
|
||||
{
|
||||
use ActiveRelationTrait;
|
||||
}
|
||||
Reference in New Issue
Block a user