public function KeycloakRoleMatcher::isDebugMode in Keycloak OpenID Connect 8
Whether the Keycloak client is in verbose debug mode.
Return value
bool TRUE, if debug mode is enabled, FALSE otherwise.
1 call to KeycloakRoleMatcher::isDebugMode()
- KeycloakRoleMatcher::applyRoleRules in src/
Service/ KeycloakRoleMatcher.php - Applies user role rules to the given user account.
File
- src/
Service/ KeycloakRoleMatcher.php, line 469
Class
- KeycloakRoleMatcher
- Role matcher service.
Namespace
Drupal\keycloak\ServiceCode
public function isDebugMode() {
return $this->config
->get('settings.debug');
}