From: Roland Häder Date: Tue, 7 Feb 2012 20:34:20 +0000 (+0000) Subject: Renamed (opps) X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a0d5cb424ad784b6d6be71ed185dbd556d16a255;p=hub.git Renamed (opps) --- diff --git a/application/hub/main/class_BaseHubSystem.php b/application/hub/main/class_BaseHubSystem.php index eb1a79f86..c0c3f6936 100644 --- a/application/hub/main/class_BaseHubSystem.php +++ b/application/hub/main/class_BaseHubSystem.php @@ -222,7 +222,7 @@ class BaseHubSystem extends BaseFrameworkSystem { $handlerName = NULL; // Temporary create a possible name from translated error code - $handlerName = 'socketError' . $this->convertToClassName($this->translateErrorCodeToName($errorCode)) . 'Handler'; + $handlerName = 'socketError' . $this->convertToClassName($this->translateSocketErrorCodeToName($errorCode)) . 'Handler'; // Is the call-back method there? if (!method_exists($this, $handlerName)) { @@ -282,7 +282,7 @@ class BaseHubSystem extends BaseFrameworkSystem { * @param $errorCode The error code from socket_last_error() to be translated * @return $errorName The translated name (all lower-case, with underlines) */ - public function translateErrorCodeToName ($errorCode) { + public function translateSocketErrorCodeToName ($errorCode) { // Nothing bad happened by default $errorName = BaseRawDataHandler::SOCKET_CONNECTED;