mirror of
https://github.com/elyby/accounts.git
synced 2024-12-02 19:50:46 +05:30
14 lines
311 B
PHP
14 lines
311 B
PHP
|
<?php
|
||
|
namespace tests\codeception\common\fixtures;
|
||
|
|
||
|
use common\models\UsernameHistory;
|
||
|
use yii\test\ActiveFixture;
|
||
|
|
||
|
class UsernameHistoryFixture extends ActiveFixture {
|
||
|
|
||
|
public $modelClass = UsernameHistory::class;
|
||
|
|
||
|
public $dataFile = '@tests/codeception/common/fixtures/data/usernames-history.php';
|
||
|
|
||
|
}
|