mirror of
https://github.com/elyby/accounts.git
synced 2024-11-09 23:12:20 +05:30
12 lines
207 B
PHP
12 lines
207 B
PHP
<?php
|
|
namespace tests\codeception\common\fixtures;
|
|
|
|
use common\models\OauthScope;
|
|
use yii\test\ActiveFixture;
|
|
|
|
class OauthScopeFixture extends ActiveFixture {
|
|
|
|
public $modelClass = OauthScope::class;
|
|
|
|
}
|