public function Drupal8Config::isDebug in Rocket.Chat 8.2
Same name and namespace in other branches
- 8 modules/rocket_chat_api/src/RocketChat/Drupal8Config.php \Drupal\rocket_chat_api\RocketChat\Drupal8Config::isDebug()
Is this a Debug / verbose Run.
Return value
bool Are we in debug mode?
Overrides RocketChatConfigInterface::isDebug
1 method overrides Drupal8Config::isDebug()
- Test7Config::isDebug in modules/
rocket_chat_api/ src/ RocketChat/ TestConfig.class.inc - Is this a Debug / verbose Run.
File
- modules/
rocket_chat_api/ src/ RocketChat/ Drupal8Config.php, line 158
Class
- Drupal8Config
- Class Drupal8Config connects the API with the drupal system.
Namespace
Drupal\rocket_chat_api\RocketChatCode
public function isDebug() {
return $this->state
->get("rocket.chat.debugMode", FALSE);
}