You are here

public function Drupal8Config::isDebug in Rocket.Chat 8

Same name and namespace in other branches
  1. 8.2 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 121

Class

Drupal8Config
Class Drupal8Config connects the API with the drupal system.

Namespace

Drupal\rocket_chat_api\RocketChat

Code

public function isDebug() {
  return $this->moduleHandler
    ->moduleExists('devel');
}