public function Test7Config::notify in Rocket.Chat 8.2
Same name and namespace in other branches
- 8 modules/rocket_chat_api/src/RocketChat/TestConfig.class.inc \Drupal\rocket_chat_api\RocketChat\Test7Config::notify()
Notify the backend.
Parameters
string $message: Message to report back.
string $type: Type or Level of the Message.
Return value
mixed Result of notify on backend.
Overrides Drupal8Config::notify
1 call to Test7Config::notify()
- Test7Config::log in modules/
rocket_chat_api/ src/ RocketChat/ TestConfig.class.inc - Log a specific action
File
- modules/
rocket_chat_api/ src/ RocketChat/ TestConfig.class.inc, line 90
Class
- Test7Config
- Class Test7Config For Testing.
Namespace
Drupal\rocket_chat_api\RocketChatCode
public function notify($message, $type) {
return fwrite(STDERR, "Message [{$type}=>{$message}]\n");
}