Changed to generic interface Handleable to allow all types of handlers, not just...
authorRoland Häder <roland@mxchange.org>
Thu, 16 Feb 2012 22:30:24 +0000 (22:30 +0000)
committerRoland Häder <roland@mxchange.org>
Thu, 16 Feb 2012 22:30:24 +0000 (22:30 +0000)
inc/classes/main/class_BaseFrameworkSystem.php

index d142efb106a7f0f90c2dd6bad8c6c091a388fff8..f6c370721555b903f37846579095b0443f6aabe5 100644 (file)
@@ -1671,10 +1671,10 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
        /**
         * Setter for handler instance
         *
        /**
         * Setter for handler instance
         *
-        * @param       $handlerInstance        A Networkable instance
+        * @param       $handlerInstance        An instance of a Handleable class
         * @return      void
         */
         * @return      void
         */
-       protected final function setHandlerInstance (Networkable $handlerInstance) {
+       protected final function setHandlerInstance (Handleable $handlerInstance) {
                $this->handlerInstance = $handlerInstance;
        }
 
                $this->handlerInstance = $handlerInstance;
        }