X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fclasses%2Fmain%2Fclass_BaseFrameworkSystem.php;h=9fe6e72c2dcd11e5b609e06497ad43cbc879ba07;hb=38b72ffe74c133db5dfe999187de21e5eebf180f;hp=ae19aeb4938c66af993788a76cfbd9016413b6a0;hpb=88edbab806256235ce080fc18d6602061777a6ba;p=core.git diff --git a/inc/classes/main/class_BaseFrameworkSystem.php b/inc/classes/main/class_BaseFrameworkSystem.php index ae19aeb4..9fe6e72c 100644 --- a/inc/classes/main/class_BaseFrameworkSystem.php +++ b/inc/classes/main/class_BaseFrameworkSystem.php @@ -129,7 +129,7 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface { private $parserInstance = NULL; /** - * A ProtocolHandler instance + * A HandleableProtocol instance */ private $protocolInstance = NULL; @@ -199,7 +199,7 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface { private $minableInstance = NULL; /** - * A Directory instance + * A FrameworkDirectory instance */ private $directoryInstance = NULL; @@ -1018,19 +1018,19 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface { } /** - * Setter for ProtocolHandler instance + * Setter for HandleableProtocol instance * - * @param $protocolInstance An instance of an ProtocolHandler + * @param $protocolInstance An instance of an HandleableProtocol * @return void */ - public final function setProtocolInstance (ProtocolHandler $protocolInstance = NULL) { + public final function setProtocolInstance (HandleableProtocol $protocolInstance = NULL) { $this->protocolInstance = $protocolInstance; } /** - * Getter for ProtocolHandler instance + * Getter for HandleableProtocol instance * - * @return $protocolInstance An instance of an ProtocolHandler + * @return $protocolInstance An instance of an HandleableProtocol */ public final function getProtocolInstance () { return $this->protocolInstance; @@ -1325,19 +1325,19 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface { } /** - * Setter for Directory instance + * Setter for FrameworkDirectory instance * * @param $directoryInstance A FrameworkDirectoryPointer instance * @return void */ - protected final function setDirectoryInstance (Directory $directoryInstance) { + protected final function setDirectoryInstance (FrameworkDirectory $directoryInstance) { $this->directoryInstance = $directoryInstance; } /** - * Getter for directory instance + * Getter for FrameworkDirectory instance * - * @return $directoryInstance A Directory instance + * @return $directoryInstance A FrameworkDirectory instance */ protected final function getDirectoryInstance () { return $this->directoryInstance;