Les commandes des modules YII2 ne sont pas affichés dans la console

#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