Answers for "yii2 modules commands are not showing in console"

PHP
0

yii2 modules commands are not showing in console

#Do this in bootstrap file of your module, you just have to register the consoleControllerNamespace

    public function bootstrap($app)
    {
        if ($app instanceof yiiconsoleApplication) {
            $app->getModule('test')->controllerNamespace = 'mymodulestestconsole';
        }
    }
Posted by: Guest on January-06-2022

Code answers related to "yii2 modules commands are not showing in console"

Browse Popular Code Answers by Language