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