mirror of
https://github.com/elyby/accounts.git
synced 2024-12-03 04:01:03 +05:30
18 lines
385 B
PHP
18 lines
385 B
PHP
<?php
|
|
namespace tests\codeception\common\fixtures;
|
|
|
|
use common\models\OauthAccessToken;
|
|
use yii\test\ActiveFixture;
|
|
|
|
class OauthAccessTokenFixture extends ActiveFixture {
|
|
|
|
public $modelClass = OauthAccessToken::class;
|
|
|
|
public $dataFile = '@tests/codeception/common/fixtures/data/oauth-access-tokens.php';
|
|
|
|
public $depends = [
|
|
OauthSessionFixture::class,
|
|
];
|
|
|
|
}
|