ItemDb.php 203 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 13
{
	public static function tableName()
	{
		return 'yii2_test_item';
	}
}