mirror of
https://github.com/elyby/accounts.git
synced 2024-11-10 15:32:12 +05:30
14 lines
307 B
PHP
14 lines
307 B
PHP
<?php
|
|
namespace tests\codeception\common\fixtures;
|
|
|
|
use common\models\MojangUsername;
|
|
use yii\test\ActiveFixture;
|
|
|
|
class MojangUsernameFixture extends ActiveFixture {
|
|
|
|
public $modelClass = MojangUsername::class;
|
|
|
|
public $dataFile = '@tests/codeception/common/fixtures/data/mojang-usernames.php';
|
|
|
|
}
|