From 40c5947c4818e8b2d2e392351f176a2332d72fc0 Mon Sep 17 00:00:00 2001 From: MeinAccount Date: Sat, 25 Feb 2012 17:18:23 +0100 Subject: [PATCH] Added space after the type casts. --- .../files/lib/system/exception/SystemException.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wcfsetup/install/files/lib/system/exception/SystemException.class.php b/wcfsetup/install/files/lib/system/exception/SystemException.class.php index 8d670b2fc5..faa15071fd 100644 --- a/wcfsetup/install/files/lib/system/exception/SystemException.class.php +++ b/wcfsetup/install/files/lib/system/exception/SystemException.class.php @@ -41,7 +41,7 @@ class SystemException extends LoggedException implements IPrintableException { * @param \Exception $previous repacked Exception */ public function __construct($message = '', $code = 0, $description = '', \Exception $previous = null) { - parent::__construct((string)$message, (int)$code, $previous); + parent::__construct((string) $message, (int) $code, $previous); $this->description = $description; } -- 2.20.1