dektrium\rbac\Bootstrap::checkUserModuleInstalled PHP Method

checkUserModuleInstalled() protected method

Verifies that dektrium/yii2-user is installed and configured.
protected checkUserModuleInstalled ( Application $app ) : boolean
$app yii\base\Application
return boolean
    protected function checkUserModuleInstalled(Application $app)
    {
        return $app->hasModule('user') && $app->getModule('user') instanceof UserModule;
    }