Add generics for all controllers (#20675)

This commit is contained in:
Maksim Spirkov
2025-11-03 12:59:23 +03:00
committed by GitHub
parent 0998ac6cb1
commit 7dd3dede14
36 changed files with 216 additions and 63 deletions

View File

@@ -9,6 +9,7 @@ namespace yii\console\controllers;
use Yii;
use yii\base\Action;
use yii\console\Application;
use yii\db\Connection;
use yii\db\Query;
use yii\di\Instance;
@@ -72,6 +73,9 @@ use yii\helpers\Inflector;
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*
* @template T of Application
* @extends BaseMigrateController<T>
*/
class MigrateController extends BaseMigrateController
{