mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-17 16:01:15 +08:00
24 lines
480 B
PHP
24 lines
480 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\Fixture;
|
|
|
|
class FirstFixture extends Fixture
|
|
{
|
|
public function load()
|
|
{
|
|
FixtureStorage::$firstFixtureData[] = 'some data set for first fixture';
|
|
}
|
|
|
|
public function unload()
|
|
{
|
|
FixtureStorage::$firstFixtureData = [];
|
|
}
|
|
}
|