mirror of
https://github.com/elyby/accounts.git
synced 2024-12-04 12:39:26 +05:30
18 lines
341 B
PHP
18 lines
341 B
PHP
|
<?php
|
||
|
namespace tests\codeception\common\fixtures;
|
||
|
|
||
|
use common\models\OauthScope;
|
||
|
use common\models\OauthSession;
|
||
|
use yii\test\ActiveFixture;
|
||
|
|
||
|
class OauthSessionFixture extends ActiveFixture {
|
||
|
|
||
|
public $modelClass = OauthSession::class;
|
||
|
|
||
|
public $depends = [
|
||
|
OauthClientFixture::class,
|
||
|
AccountFixture::class,
|
||
|
];
|
||
|
|
||
|
}
|