Команды модулей YII2 не отображаются в консоли

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

    public function bootstrap($app)
    {
        if ($app instanceof \yii\console\Application) {
            $app->getModule('test')->controllerNamespace = 'mymodules\test\console';
        }
    }
M. Wasim Abbasi