You are here

public function InMemoryConfig::getJsonDecoder in Rocket.Chat 8.2

Same name and namespace in other branches
  1. 8 modules/rocket_chat_api/src/RocketChat/InMemoryConfig.php \Drupal\rocket_chat_api\RocketChat\InMemoryConfig::getJsonDecoder()

Get a function pointer to the function to use for JsonDecodeing.

Return value

mixed Result array

Overrides RocketChatConfigInterface::getJsonDecoder

File

modules/rocket_chat_api/src/RocketChat/InMemoryConfig.php, line 147

Class

InMemoryConfig
Class InMemoryConfig keeps the config in memory.

Namespace

Drupal\rocket_chat_api\RocketChat

Code

public function getJsonDecoder() {
  return $this->superConfig
    ->getJsonDecoder();
}