mirror of
https://github.com/elyby/accounts.git
synced 2024-11-16 18:23:29 +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;
|
||
|
|
||
|
}
|