From: Roland Häder Date: Thu, 16 Feb 2012 22:30:24 +0000 (+0000) Subject: Changed to generic interface Handleable to allow all types of handlers, not just... X-Git-Url: https://git.mxchange.org/?p=core.git;a=commitdiff_plain;h=9d9417bb82c796a566ceb84db8f27ac50393e9d2 Changed to generic interface Handleable to allow all types of handlers, not just network data handler --- 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; }