]> git.mxchange.org Git - hub.git/commitdiff
type hints added
authorRoland Häder <roland@mxchange.org>
Tue, 4 Mar 2008 19:30:29 +0000 (19:30 +0000)
committerRoland Häder <roland@mxchange.org>
Tue, 4 Mar 2008 19:30:29 +0000 (19:30 +0000)
15 files changed:
application/hub/exceptions/client/class_HubHelloException.php
application/hub/exceptions/client/class_HubPeerAuthorizationException.php
application/hub/exceptions/client/class_HubPeerTimeoutException.php
application/hub/exceptions/commands/class_UnexpectedAwaitCommandException.php
application/hub/exceptions/master/class_HubMasterDisconnectedException.php
application/hub/exceptions/socket/connector/class_SocketAcceptException.php
application/hub/exceptions/socket/connector/class_SocketSelectorException.php
application/hub/exceptions/socket/init/class_SocketBindException.php
application/hub/exceptions/socket/init/class_SocketConnectException.php
application/hub/exceptions/socket/init/class_SocketCreationException.php
application/hub/exceptions/socket/init/class_SocketListeningException.php
application/hub/exceptions/socket/init/class_SocketSetupException.php
application/hub/exceptions/socket/peer/class_BrokenPipeException.php
application/hub/exceptions/socket/peer/class_IPSpoofingException.php
application/hub/exceptions/socket/peer/class_PeerSocketException.php

index 597af222a55f214ba24130421c1b7c9afabea661..505cae52eb969ff9997c5afd3738fee0fa430880 100644 (file)
@@ -28,7 +28,7 @@ class HubHelloException extends HubException {
         * @param               $code           Code number for the exception
         * @return      void
         */
-       public final function __construct ($msgArray, $code) {
+       public final function __construct (array $msgArray, $code) {
                // Construct the message
                $message = sprintf("[%s:%d] Peer <u>%s</u> has not replyed our %s request within %d retries.<br />\n",
                        $msgArray['this']->__toString(),
index 9018eb290a04b39213eb4ed0cc334d38865947fd..3df17bea992517a1c5a118cd33d83f0c0f941ae1 100644 (file)
@@ -28,7 +28,7 @@ class HubPeerAuthorizationException extends HubException {
         * @param               $code           Code number for the exception
         * @return      void
         */
-       public final function __construct ($msgArray, $code) {
+       public final function __construct (array $msgArray, $code) {
                // Construct the message
                $message = sprintf("[%s:%d] Peer <u>%s</u> has reached the maximum of <u>%d</u> authorization tries. Disconnecting peer....<br />\n",
                        $msgArray['this']->__toString(),
index ead9caa6fffd4a1e521da396bc75139935e493da..312ea50dff88acda82638d67d24da4d30f5d3415 100644 (file)
@@ -28,7 +28,7 @@ class HubPeerTimeoutException extends HubException {
         * @param               $code           Code number for the exception
         * @return      void
         */
-       public final function __construct ($msgArray, $code) {
+       public final function __construct (array $msgArray, $code) {
                // Construct the message
                $message = sprintf("[%s:%d] Peer <u>%s</u> is no longer responding. Trying to disconnect the peer...<br />\n",
                        $msgArray['this']->__toString(),
index f5b916eb7f57d3f07a5c1208312d1d672f7137d7..cc4c790290b8c490a4acaa74915d116eb56fd667 100644 (file)
@@ -28,7 +28,7 @@ class UnexpectedAwaitCommandException extends HubException {
         * @param               $code           Code number for the exception
         * @return      void
         */
-       public final function __construct ($msgArray, $code) {
+       public final function __construct (array $msgArray, $code) {
                // Construct the message
                $message = sprintf("[%s:%d] Not awaiting command %s from peer %s<br />\n",
                        $msgArray['this']->__toString(),
index 9164b56510a333228b9d1db88adf65d3a84bbe12..782aa1ac2183de51c28478c20e053573afe91606 100644 (file)
@@ -28,7 +28,7 @@ class HubMasterDisconnectedException extends HubException {
         * @param               $code           Code number for the exception
         * @return      void
         */
-       public final function __construct ($msgArray, $code) {
+       public final function __construct (array $msgArray, $code) {
                // Construct the message
                $message = sprintf("[%s:%d] Raw message received: %s<br />\n",
                        $msgArray['this']->__toString(),
index 70b1b7ebc955e06c6d167b79925518a756be06af..ba2d03b2953599a420ce9fe9903e5b663529b1ea 100644 (file)
@@ -28,7 +28,7 @@ class SocketAcceptException extends SocketException {
         * @param               $code           Code number for the exception
         * @return      void
         */
-       public final function __construct ($msgArray, $code) {
+       public final function __construct (array $msgArray, $code) {
                // Construct the message
                $message = sprintf("[%s:%d] socket_accept() has failed. Reason: <u>%s</u> (Code: <u>%d</u>)",
                        $msgArray['this']->__toString(),
index 38234ae3a8d2e8ba9ed98e46cc689442980e4ee7..83f7d8ade8a05ec3e982beaf9b06ddee249c8132 100644 (file)
@@ -28,7 +28,7 @@ class SocketSelectorException extends SocketException {
         * @param               $code           Code number for the exception
         * @return      void
         */
-       public final function __construct ($msgArray, $code) {
+       public final function __construct (array $msgArray, $code) {
                // Construct the message
                $message = sprintf("[%s:%d] socket_select() has failed. Reason: <u>%s</u> (Code: <u>%d</u>)",
                        $msgArray['this']->__toString(),
index caef6f3f9e1fd5931a58a77256bc0bff58eb9895..6b71716e878ecbe5ee7174c82c90f6f32d3fda2e 100644 (file)
@@ -28,7 +28,7 @@ class SocketBindException extends SocketException {
         * @param               $code           Code number for the exception
         * @return      void
         */
-       public final function __construct ($msgArray, $code) {
+       public final function __construct (array $msgArray, $code) {
                // Construct the message
                $message = sprintf("[%s:%d] Socket konnte nicht an %s:%d gebunden werden. Reason: <u>%s</u> (Code: <u>%d</u>)", 
                        $msgArray['this']->__toString(),
index 3059677e503bcea554b16bb9ccd82bbe67e3ad50..879cea4b628b3c65957455cf9331700a11301529 100644 (file)
@@ -28,7 +28,7 @@ class SocketConnectException extends SocketException {
         * @param               $code           Code number for the exception
         * @return      void
         */
-       public final function __construct ($msgArray, $code) {
+       public final function __construct (array $msgArray, $code) {
                // Construct the message
                $message = sprintf("[%s:%d] socket_connect() has failed. Reason: <u>%s</u> (Code: <u>%d</u>)",
                        $msgArray['this']->__toString(),
index 2991fc06e8e9401784dd261c0452e809d094fd8a..eaeae36a3d8b740c70fca2ce6cf406d663b52636 100644 (file)
@@ -28,7 +28,7 @@ class SocketCreationException extends SocketException {
         * @param               $code           Code number for the exception
         * @return      void
         */
-       public final function __construct ($msgArray, $code) {
+       public final function __construct (array $msgArray, $code) {
                // Construct the message
                $message = sprintf("[%s:%d] Socket konnte nicht erstellt werden. Reason: <u>%s</u> (Code: <u>%d</u>)", 
                        $msgArray['this']->__toString(),
index 979b1b1ddde17d2aa320f4b98707056a02229e50..f6fce58ff6f0330b1e5b778374237611aaa8663b 100644 (file)
@@ -28,7 +28,7 @@ class SocketListeningException extends SocketException {
         * @param               $code           Code number for the exception
         * @return      void
         */
-       public final function __construct ($msgArray, $code) {
+       public final function __construct (array $msgArray, $code) {
                // Construct the message
                $message = sprintf("[%s:%d] socket_listen() has failed. Reason: <u>%s</u> (Code: <u>%d</u>)",
                        $msgArray['this']->__toString(),
index 3f3f9141cef1294e2d007fcb345df44b74f86d35..789e6d110f7b4c6b97fbb7762376135089e6ce7c 100644 (file)
@@ -28,7 +28,7 @@ class SocketSetupException extends SocketException {
         * @param               $code           Code number for the exception
         * @return      void
         */
-       public final function __construct ($msgArray, $code) {
+       public final function __construct (array $msgArray, $code) {
                // Construct the message
                $message = sprintf("[%s:%d] Socket konnte nicht konfiguriert werden. Reason: <u>%s</u> (Code: <u>%d</u>)",
                        $msgArray['this']->__toString(),
index 8f7d1a88fd2923bbe0dbde6a38a381c1c44589fe..4217623b623d2023996968cd5ed7564d0baa4d8f 100644 (file)
@@ -28,7 +28,7 @@ class BrokenPipeException extends SocketException {
         * @param               $code           Code number for the exception
         * @return      void
         */
-       public final function __construct ($msgArray, $code) {
+       public final function __construct (array $msgArray, $code) {
                // Construct the message
                $message = sprintf("[%s:%d] Connection lost to peer <u>%s</u>. Error message: <u>%s</u> (Code: %d)<br />\n",
                        $msgArray['this']->__toString(),
index 85516133f1687ea9eb6dd517ac8ee00e98a3e27b..6dab992be21eaeeec4636b7dc6fa67c390ff3c31 100644 (file)
@@ -28,7 +28,7 @@ class IPSpoofingException extends SocketException {
         * @param               $code           Code number for the exception
         * @return      void
         */
-       public final function __construct ($msgArray, $code) {
+       public final function __construct (array $msgArray, $code) {
                // Construct the message
                $message = sprintf("[%s:%d] Peer-IP hat sich von <u>%s</u> auf <u>%s</u> ge&auml;ndert.<br />\n", 
                        $msgArray['this']->__toString(),
index 9d1278d2ffa87a28b8ea49ea45aa4fbc471795c6..b5f40eddda6ecf6f027e385c8a323536fd573fea 100644 (file)
@@ -28,7 +28,7 @@ class PeerSocketException extends SocketException {
         * @param               $code           Code number for the exception
         * @return      void
         */
-       public final function __construct ($msgArray, $code) {
+       public final function __construct (array $msgArray, $code) {
                // Construct the message
                $message = sprintf("[%s:%d] Peer-Socket ist ung&uuml;ltig. Datentyp: <u>%s</u><br />\n",
                        $msgArray['this']->__toString(),