From: Roland Haeder Date: Sat, 25 Apr 2015 22:35:20 +0000 (+0200) Subject: Sourceable was a strange name ... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=62177049b25b2662ded30789c712f9777fa6d01b;p=core.git Sourceable was a strange name ... Signed-off-by: Roland Häder --- diff --git a/inc/classes/main/class_BaseFrameworkSystem.php b/inc/classes/main/class_BaseFrameworkSystem.php index a6302248..7087af8d 100644 --- a/inc/classes/main/class_BaseFrameworkSystem.php +++ b/inc/classes/main/class_BaseFrameworkSystem.php @@ -144,7 +144,7 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface { private $helperInstance = NULL; /** - * An instance of a Sourceable class + * An instance of a Source class */ private $sourceInstance = NULL; @@ -1142,19 +1142,19 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface { } /** - * Setter for a Sourceable instance + * Setter for a Source instance * - * @param $sourceInstance An instance of a Sourceable class + * @param $sourceInstance An instance of a Source class * @return void */ - protected final function setSourceInstance (Sourceable $sourceInstance) { + protected final function setSourceInstance (Source $sourceInstance) { $this->sourceInstance = $sourceInstance; } /** - * Getter for a Sourceable instance + * Getter for a Source instance * - * @return $sourceInstance An instance of a Sourceable class + * @return $sourceInstance An instance of a Source class */ protected final function getSourceInstance () { return $this->sourceInstance;