]> git.mxchange.org Git - core.git/blobdiff - framework/main/interfaces/registry/class_Register.php
Continued:
[core.git] / framework / main / interfaces / registry / class_Register.php
index 8e2daa03abb118682295a99fce78ca70031364b7..bfda3c3bb7a4dfad9cdb70a33debcb31570f8757 100644 (file)
@@ -28,22 +28,6 @@ use Org\Mxchange\CoreFramework\Generic\FrameworkInterface;
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
 interface Register extends FrameworkInterface {
-       /**
-        * Checks whether an instance key was found
-        *
-        * @param       $instanceKey    The key holding an instance in registry
-        * @return      $exists                 Whether the key exists in registry
-        */
-       function instanceExists (string $instanceKey);
-
-       /**
-        * Adds/overwrites a new instance to the registry at the given key
-        *
-        * @param       $instanceKey            The key to identify the instance
-        * @param       $objectInstance         An instance we shall store
-        * @return      void
-        */
-       function addInstance (string $instanceKey, Registerable $objectInstance);
 
        /**
         * Getter for whole generic registry
@@ -52,13 +36,6 @@ interface Register extends FrameworkInterface {
         */
        function getGenericRegistry ();
 
-       /**
-        * Getter for whole instance registry
-        *
-        * @return      $instanceRegistry       The whole instance registry array
-        */
-       function getInstanceRegistry ();
-
        /**
         * Adds a new entry to the given list name. If you want to add objects
         * please use addInstance() and getInstance() instead.
@@ -85,13 +62,4 @@ interface Register extends FrameworkInterface {
         */
        function getArrayFromKey (string $arrayKey, string $lookFor);
 
-       /**
-        * Gets a registered instance or null if not found
-        *
-        * @param       $instanceKey            The key to identify the instance
-        * @return      $objectInstance         An instance we shall store
-        * @throws      NullPointerException    If the requested key is not found
-        */
-       function getInstance (string $instanceKey);
-
 }