]> git.mxchange.org Git - core.git/blobdiff - inc/main/interfaces/crypto/class_Cryptable.php
Introduced namespaces:
[core.git] / inc / main / interfaces / crypto / class_Cryptable.php
index e5968a0e21211b5f272692cac52a692cfda993e5..4dcfef40065874ac1da4c5d7916a3288fb6cdbbb 100644 (file)
@@ -1,4 +1,10 @@
 <?php
+// Own namespace
+namespace CoreFramework\Cryto;
+
+// Load framework stuff
+use CoreFramework\Generic\FrameworkInterface;
+
 /**
  * A helper class for cryptographical things like hashing passwords and so on
  *
@@ -51,7 +57,5 @@ interface Cryptable extends FrameworkInterface {
         * @return      $str            The unencrypted string
         */
        function decryptString ($encrypted);
-}
 
-// [EOF]
-?>
+}