mirror of
https://github.com/yiisoft/yii2.git
synced 2026-03-03 14:05:52 +01:00
22 lines
386 B
PHP
22 lines
386 B
PHP
<?php
|
|
|
|
/**
|
|
* @link https://www.yiiframework.com/
|
|
* @copyright Copyright (c) 2008 Yii Software LLC
|
|
* @license https://www.yiiframework.com/license/
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace yiiunit\data\modules\magic\controllers\subFolder;
|
|
|
|
use yii\console\Controller;
|
|
|
|
class SubController extends Controller
|
|
{
|
|
public function actionTest(): string
|
|
{
|
|
return '';
|
|
}
|
|
}
|