Added space after the type casts.
authorMeinAccount <magnus.khn@googlemail.com>
Sat, 25 Feb 2012 16:18:23 +0000 (17:18 +0100)
committerMeinAccount <magnus.khn@googlemail.com>
Sat, 25 Feb 2012 16:18:23 +0000 (17:18 +0100)
wcfsetup/install/files/lib/system/exception/SystemException.class.php

index 8d670b2fc5b54ef45f1d44d30c6ed2daa68a7c41..faa15071fd906aed65e6feb9f208018c3ef295a3 100644 (file)
@@ -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;
        }