From: Roland Häder Date: Wed, 2 Dec 2020 18:42:58 +0000 (+0100) Subject: Refacturing: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=23eb1de6d17a65191b25616ad847aba5b845762a;p=core.git Refacturing: - introduced RegisterTrait instead of $registryInstance Signed-off-by: Roland Häder --- diff --git a/framework/main/classes/iterator/registry/class_RegistryIterator.php b/framework/main/classes/iterator/registry/class_RegistryIterator.php index 9c9d0b4a..8b331182 100644 --- a/framework/main/classes/iterator/registry/class_RegistryIterator.php +++ b/framework/main/classes/iterator/registry/class_RegistryIterator.php @@ -6,9 +6,9 @@ namespace Org\Mxchange\CoreFramework\Iterator\Registry; use Org\Mxchange\CoreFramework\Generic\FrameworkInterface; use Org\Mxchange\CoreFramework\Generic\NullPointerException; use Org\Mxchange\CoreFramework\Iterator\BaseIterator; -use Org\Mxchange\CoreFramework\Registry\Register; use Org\Mxchange\CoreFramework\Registry\Registerable; use Org\Mxchange\CoreFramework\Registry\Sub\SubRegistry; +use Org\Mxchange\CoreFramework\Traits\Registry\RegisterTrait; // Import SPL stuff use \BadMethodCallException; @@ -37,6 +37,9 @@ use \LogicException; * along with this program. If not, see . */ class RegistryIterator extends BaseIterator implements IteratableRegistry { + // Load traits + use RegisterTrait; + /** * All found registry keys */ @@ -53,11 +56,6 @@ class RegistryIterator extends BaseIterator implements IteratableRegistry { */ private $key = NULL; - /** - * Registry instance (implementing Register) - */ - private $registryInstance = NULL; - /** * Protected constructor * @@ -93,25 +91,6 @@ class RegistryIterator extends BaseIterator implements IteratableRegistry { return $iteratorInstance; } - /** - * Setter for registry instance - * - * @param $registryInstance An instance of a Register class - * @return void - */ - protected final function setRegistryInstance (Register $registryInstance) { - $this->registryInstance = $registryInstance; - } - - /** - * Getter for registry instance - * - * @return $registryInstance The debug registry instance - */ - protected final function getRegistryInstance () { - return $this->registryInstance; - } - /** * Setter for only-registries array * diff --git a/framework/main/traits/registry/class_RegisterTrait.php b/framework/main/traits/registry/class_RegisterTrait.php new file mode 100644 index 00000000..b8d5a585 --- /dev/null +++ b/framework/main/traits/registry/class_RegisterTrait.php @@ -0,0 +1,55 @@ + + * @version 0.0.0 + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2020 Core Developer Team + * @license GNU GPL 3.0 or any newer version + * @link http://www.ship-simu.org + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ +trait RegisterTrait { + /** + * Registry instance (implementing Register) + */ + private $registryInstance = NULL; + + /** + * Setter for registry instance + * + * @param $registryInstance An instance of a Register class + * @return void + */ + protected final function setRegistryInstance (Register $registryInstance) { + $this->registryInstance = $registryInstance; + } + + /** + * Getter for registry instance + * + * @return $registryInstance The debug registry instance + */ + protected final function getRegistryInstance () { + return $this->registryInstance; + } + +}