diff options
author | Fabio Bas <ctrlaltca@gmail.com> | 2015-01-25 20:04:57 +0100 |
---|---|---|
committer | Fabio Bas <ctrlaltca@gmail.com> | 2015-01-25 20:04:57 +0100 |
commit | e4999b25052d1ad9400a0f9fd5289a49eea1bddc (patch) | |
tree | 50e9b819fc3326cf08e882b648f8dafc8fec3fa4 /framework/Security | |
parent | 5230f8f8a86fc1ae5d90f8c74ae65c93e197502b (diff) |
More namespace changes
Changed version to 3.2.99;
Attempt at fixing autoloading
fixed enough namespaces to have some demos running
Diffstat (limited to 'framework/Security')
-rw-r--r-- | framework/Security/TSecurityManagerValidationMode.php | 2 | ||||
-rw-r--r-- | framework/Security/TUserManagerPasswordMode.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/framework/Security/TSecurityManagerValidationMode.php b/framework/Security/TSecurityManagerValidationMode.php index bae56956..26d2483b 100644 --- a/framework/Security/TSecurityManagerValidationMode.php +++ b/framework/Security/TSecurityManagerValidationMode.php @@ -27,7 +27,7 @@ namespace Prado\Security; * @package Prado\Security * @since 3.0.4 */ -class TSecurityManagerValidationMode extends TEnumerable +class TSecurityManagerValidationMode extends \Prado\TEnumerable { const MD5 = 'MD5'; const SHA1 = 'SHA1'; diff --git a/framework/Security/TUserManagerPasswordMode.php b/framework/Security/TUserManagerPasswordMode.php index 4a4493a2..39a4a48e 100644 --- a/framework/Security/TUserManagerPasswordMode.php +++ b/framework/Security/TUserManagerPasswordMode.php @@ -25,7 +25,7 @@ namespace Prado\Security; * @package Prado\Security * @since 3.0.4 */ -class TUserManagerPasswordMode extends TEnumerable +class TUserManagerPasswordMode extends \Prado\TEnumerable { const Clear='Clear'; const MD5='MD5'; |