From a55ec97650341930cd5fee6f1fd2831d7ccca358 Mon Sep 17 00:00:00 2001 From: javalizard <> Date: Sun, 18 Apr 2010 04:43:44 +0000 Subject: Ensured parent::__construct calls within Web and Services --- framework/Web/Services/TRpcService.php | 2 ++ framework/Web/Services/TSoapService.php | 1 + 2 files changed, 3 insertions(+) (limited to 'framework/Web/Services') diff --git a/framework/Web/Services/TRpcService.php b/framework/Web/Services/TRpcService.php index 7310725a..96bdc86b 100644 --- a/framework/Web/Services/TRpcService.php +++ b/framework/Web/Services/TRpcService.php @@ -165,6 +165,7 @@ class TRpcServer extends TModule */ public function __construct(TRpcProtocol $protocolHandler) { + parent::__construct(); $this->handler = $protocolHandler; } @@ -245,6 +246,7 @@ abstract class TRpcApiProvider extends TModule public function __construct(TRpcServer $rpcServer) { + parent::__construct(); $this->rpcServer = $rpcServer; foreach($this->registerMethods() as $_methodName => $_methodDetails) diff --git a/framework/Web/Services/TSoapService.php b/framework/Web/Services/TSoapService.php index ddb5cecb..4db97544 100644 --- a/framework/Web/Services/TSoapService.php +++ b/framework/Web/Services/TSoapService.php @@ -101,6 +101,7 @@ class TSoapService extends TService */ public function __construct() { + parent::__construct(); $this->setID('soap'); } -- cgit v1.2.3