ItemDb.php 219 Bytes
Newer Older
1 2
<?php

3
namespace yiiunit\data\ar\sphinx;
4

5
use yiiunit\data\ar\ActiveRecord as ActiveRecordDb;
6

7
class ItemDb extends ActiveRecordDb
8
{
9 10 11 12
    public static function tableName()
    {
        return 'yii2_test_item';
    }
AlexGx committed
13
}