portal.mkgtu.ru/console/controllers/RbacMigrateController.php

24 lines
362 B
PHP
Raw Normal View History

2024-03-28 09:51:45 +03:00
<?php
namespace console\controllers;
use console\traits\ChangeStdStreamsTrait;
use yii\console\controllers\MigrateController;
class RbacMigrateController extends MigrateController
{
use ChangeStdStreamsTrait;
protected function createMigration($class)
{
$this->includeMigrationFile($class);
return new $class();
}
}