mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-18 01:07:37 +08:00
22 lines
485 B
PHP
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();
|
|
}
|
|
}
|