diff options
Diffstat (limited to 'framework/Web/Services/TRpcService.php')
-rw-r--r-- | framework/Web/Services/TRpcService.php | 2 |
1 files changed, 2 insertions, 0 deletions
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) |