mirror of
https://github.com/elyby/accounts.git
synced 2024-11-06 16:21:08 +05:30
14 lines
292 B
PHP
14 lines
292 B
PHP
<?php
|
|
namespace common\tests\fixtures;
|
|
|
|
use common\models\UsernameHistory;
|
|
use yii\test\ActiveFixture;
|
|
|
|
class UsernameHistoryFixture extends ActiveFixture {
|
|
|
|
public $modelClass = UsernameHistory::class;
|
|
|
|
public $dataFile = '@root/common/tests/fixtures/data/usernames-history.php';
|
|
|
|
}
|