]> git.mxchange.org Git - core.git/blobdiff - inc/classes/main/class_BaseFrameworkSystem.php
Changed to generic interface Handleable to allow all types of handlers, not just...
[core.git] / 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
         *
-        * @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;
        }