From: Michael M Slusarz Date: Wed, 17 Mar 2010 17:49:11 +0000 (-0600) Subject: No need to redefine __construct(). X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=17c5ffe171edda95b4efcc2a39d34e7dcd60e04d;p=horde.git No need to redefine __construct(). --- diff --git a/framework/Log/lib/Horde/Log/Exception.php b/framework/Log/lib/Horde/Log/Exception.php index 6f006d22a..aa18ca9f4 100644 --- a/framework/Log/lib/Horde/Log/Exception.php +++ b/framework/Log/lib/Horde/Log/Exception.php @@ -18,13 +18,4 @@ * @author Chuck Hagenbuch * @license http://opensource.org/licenses/bsd-license.php BSD */ -class Horde_Log_Exception extends Exception -{ - /** - */ - public function __construct($msg, $code = 0) - { - parent::__construct($msg, $code); - } - -} +class Horde_Log_Exception extends Exception {}