From: Roland Häder Date: Wed, 3 Jan 2018 22:27:43 +0000 (+0100) Subject: Continued: X-Git-Url: https://git.mxchange.org/?p=core.git;a=commitdiff_plain;h=7b5cf66190e2ac4d1ac878ef60a8a6fb23e7518b Continued: - removed Communicator instance, was maybe only for 'hub'? Maybe one day it will come back together with the interface ... Signed-off-by: Roland Häder --- diff --git a/framework/main/classes/class_BaseFrameworkSystem.php b/framework/main/classes/class_BaseFrameworkSystem.php index 3db84d3f..04107244 100644 --- a/framework/main/classes/class_BaseFrameworkSystem.php +++ b/framework/main/classes/class_BaseFrameworkSystem.php @@ -244,11 +244,6 @@ abstract class BaseFrameworkSystem extends stdClass implements FrameworkInterfac */ private $directoryInstance = NULL; - /** - * An instance of a communicator - */ - private $communicatorInstance = NULL; - /** * The concrete output instance */ @@ -1482,25 +1477,6 @@ abstract class BaseFrameworkSystem extends stdClass implements FrameworkInterfac return $this->directoryInstance; } - /** - * Getter for communicator instance - * - * @return $communicatorInstance An instance of a Communicator class - */ - public final function getCommunicatorInstance () { - return $this->communicatorInstance; - } - - /** - * Setter for communicator instance - * - * @param $communicatorInstance An instance of a Communicator class - * @return void - */ - protected final function setCommunicatorInstance (Communicator $communicatorInstance) { - $this->communicatorInstance = $communicatorInstance; - } - /** * Setter for state instance *