mirror of
https://github.com/elyby/accounts.git
synced 2024-11-13 08:46:17 +05:30
18 lines
370 B
PHP
18 lines
370 B
PHP
|
<?php
|
||
|
namespace tests\codeception\common\fixtures;
|
||
|
|
||
|
use common\models\AccountSession;
|
||
|
use yii\test\ActiveFixture;
|
||
|
|
||
|
class AccountSessionFixture extends ActiveFixture {
|
||
|
|
||
|
public $modelClass = AccountSession::class;
|
||
|
|
||
|
public $dataFile = '@tests/codeception/common/fixtures/data/account-sessions.php';
|
||
|
|
||
|
public $depends = [
|
||
|
AccountFixture::class,
|
||
|
];
|
||
|
|
||
|
}
|