From 9d9417bb82c796a566ceb84db8f27ac50393e9d2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Thu, 16 Feb 2012 22:30:24 +0000 Subject: [PATCH 1/1] Changed to generic interface Handleable to allow all types of handlers, not just network data handler --- inc/classes/main/class_BaseFrameworkSystem.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inc/classes/main/class_BaseFrameworkSystem.php b/inc/classes/main/class_BaseFrameworkSystem.php index d142efb1..f6c37072 100644 --- a/inc/classes/main/class_BaseFrameworkSystem.php +++ b/inc/classes/main/class_BaseFrameworkSystem.php @@ -1671,10 +1671,10 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface { /** * Setter for handler instance * - * @param $handlerInstance A Networkable instance + * @param $handlerInstance An instance of a Handleable class * @return void */ - protected final function setHandlerInstance (Networkable $handlerInstance) { + protected final function setHandlerInstance (Handleable $handlerInstance) { $this->handlerInstance = $handlerInstance; } -- 2.30.2