我试图从终端运行控制台控制器,但我每次都会收到此错误
Error: Getting unknown property: yii\console\Application::user
Run Code Online (Sandbox Code Playgroud)
这是控制器
class TestController extends \yii\console\Controller {
public function actionIndex() {
echo 'this is console action';
} }
Run Code Online (Sandbox Code Playgroud)
这是concole配置
return [
'id' => 'app-console',
'basePath' => dirname(__DIR__),
'bootstrap' => ['log'],
'controllerNamespace' => 'console\controllers',
'modules' => [],
'components' => [
'log' => [
'targets' => [
[
'class' => 'yii\log\FileTarget',
'levels' => ['error', 'warning'],
],
],
],
],
'params' => $params];
Run Code Online (Sandbox Code Playgroud)
我尝试使用这些命令运行它没有运气
php yii test/index
php yii test
php ./yii test
Run Code Online (Sandbox Code Playgroud)
有人可以帮忙吗?