public static function functionAvailable($functionName) { return function_exists($functionName) && !Morse::functionDisabled($functionName); }
/** * @fn my_morse_decode * @short Filter method to decode a Morse encoded response body to plain text. */ protected function my_morse_decode() { $this->response->body = Morse::decode($this->response->body); }