mirror of
https://github.com/elyby/accounts.git
synced 2024-11-09 23:12:20 +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,
|
|
];
|
|
|
|
}
|