mirror of
https://github.com/elyby/accounts.git
synced 2024-12-04 12:39:26 +05:30
13 lines
199 B
PHP
13 lines
199 B
PHP
<?php
|
|
|
|
namespace tests\codeception\common\fixtures;
|
|
|
|
use common\models\Account;
|
|
use yii\test\ActiveFixture;
|
|
|
|
class AccountFixture extends ActiveFixture {
|
|
|
|
public $modelClass = Account::class;
|
|
|
|
}
|