]> git.mxchange.org Git - core.git/blobdiff - inc/classes/main/registry/class_BaseRegistry.php
Some minor improvements
[core.git] / inc / classes / main / registry / class_BaseRegistry.php
index 73c60cf34c2044015687beb307498c1cbb9e0af9..be8f8d63b68d770adabc177ff2328bd77465404d 100644 (file)
@@ -130,14 +130,14 @@ class BaseRegistry extends BaseFrameworkSystem implements Registerable {
                $entry = array();
 
                // "Walk" over all entries
-               foreach ($this->getEntries('object-name') as $key=>$value) {
+               foreach ($this->getEntries('object-name') as $key => $value) {
                        // Debug message
                        //* DEBUG: */ $this->debugOutput('REGISTRY: Checking key=' . $key . ',value=' . $value . ',lookFor=' . $lookFor);
 
                        // If $value matches the $lookFor, we need to look for more entries for this!
                        if ($lookFor == $value) {
                                // Look for more entries
-                               foreach ($this->getEntries() as $key2=>$value2) {
+                               foreach ($this->getEntries() as $key2 => $value2) {
                                        // Debug message
                                        //* DEBUG: */ $this->debugOutput('REGISTRY: Checking key2=' . $key2 . ',value2=' . print_r($value2, true) . ',lookFor=' . $lookFor);