X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fclasses%2Fexceptions%2Fsocket%2Fclass_InvalidSocketException.php;h=572394cbf38015d4c7323e4bec19791aa81cf937;hp=8c93878cebb105bd61b0cbe4f6774e902ee732f6;hb=d26e71af1e28dc1429823bdec244df6303f9b2fb;hpb=607a11e2c22949ea0647568c17d62a605595e83b diff --git a/inc/classes/exceptions/socket/class_InvalidSocketException.php b/inc/classes/exceptions/socket/class_InvalidSocketException.php index 8c93878c..572394cb 100644 --- a/inc/classes/exceptions/socket/class_InvalidSocketException.php +++ b/inc/classes/exceptions/socket/class_InvalidSocketException.php @@ -3,11 +3,11 @@ * This exception is thrown when the socket resource is invalid or an error * occurs while socket initialization phase. * - * @author Roland Haeder + * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Core Developer Team + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2015 Core Developer Team * @license GNU GPL 3.0 or any newer version - * @link http://www.ship-simu.org + * @link http://www.shipsimu.org * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -37,7 +37,7 @@ class InvalidSocketException extends AbstractSocketException { $lastError = socket_last_error($messageData[1]); // Construct the message - $message = sprintf("[%s:] Invalid socket, type=%s, errno=%s, errstr=%s", + $message = sprintf('[%s:] Invalid socket, type=%s, errno=%s, errstr=%s', $messageData[0]->__toString(), gettype($messageData[1]), $lastError, @@ -45,7 +45,7 @@ class InvalidSocketException extends AbstractSocketException { ); } else { // Construct the message - $message = sprintf("[%s:] Invalid socket, type=%s(%s), errno=%s, errstr=%s", + $message = sprintf('[%s:] Invalid socket, type=%s(%s), errno=%s, errstr=%s', $messageData[0]->__toString(), $messageData[1], gettype($messageData[1]),