Files
yii2/tests/data/console/controllers/fixtures/FirstIndependentActiveFixture.php
2022-08-03 12:32:18 +03:00

22 lines
485 B
PHP

<?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
namespace yiiunit\data\console\controllers\fixtures;
use yii\test\ActiveFixture;
class FirstIndependentActiveFixture extends ActiveFixture
{
public $modelClass = 'yiiunit\data\ar\Profile';
public function load()
{
FixtureStorage::$activeFixtureSequence[] = self::className();
parent::load();
}
}