diff options
author | javalizard <> | 2010-04-18 04:39:29 +0000 |
---|---|---|
committer | javalizard <> | 2010-04-18 04:39:29 +0000 |
commit | ddea098ba7109c8d294b723f1534611404fd77a8 (patch) | |
tree | 5a048587bd4b8254ad3dbb38bd5a3216a8959c62 /framework/Util/TRpcClient.php | |
parent | 4d02feae9d948b28ec24df42ebf498ec24beaae5 (diff) |
Ensured parent::__construct calls within TRpcClient and TXmlDocument
Diffstat (limited to 'framework/Util/TRpcClient.php')
-rw-r--r-- | framework/Util/TRpcClient.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/framework/Util/TRpcClient.php b/framework/Util/TRpcClient.php index 22af2d55..867c68d2 100644 --- a/framework/Util/TRpcClient.php +++ b/framework/Util/TRpcClient.php @@ -65,6 +65,7 @@ class TRpcClient extends TApplicationComponent */ public function __construct($serverUrl, $isNotification = false) { + parent::__construct(); $this->_serverUrl = $serverUrl; $this->_isNotification = TPropertyValue::ensureBoolean($isNotification); } |