From: Roland Häder Date: Mon, 14 May 2012 20:11:22 +0000 (+0000) Subject: 'static' please ... X-Git-Url: https://git.mxchange.org/?p=core.git;a=commitdiff_plain;h=05a70e04b314adc6e5adfa4e2f5d60c52e7e16ec 'static' please ... --- diff --git a/inc/classes/main/registry/class_BaseRegistry.php b/inc/classes/main/registry/class_BaseRegistry.php index 96f94897..d0ef397f 100644 --- a/inc/classes/main/registry/class_BaseRegistry.php +++ b/inc/classes/main/registry/class_BaseRegistry.php @@ -195,7 +195,7 @@ class BaseRegistry extends BaseFrameworkSystem implements Registerable { * @param $data An array with data * @return $registryKey A registry key */ - protected function getRegistryKeyFromArray ($prefix, array $data) { + protected static function getRegistryKeyFromArray ($prefix, array $data) { // "Generate" the key $registryKey = $prefix . self::REGISTRY_KEY_GLUE . implode(self::REGISTRY_KEY_GLUE, $data);