]> git.mxchange.org Git - core.git/blobdiff - inc/main/interfaces/captcha/class_SolveableCaptcha.php
Introduced namespaces:
[core.git] / inc / main / interfaces / captcha / class_SolveableCaptcha.php
index 05255e80de8ebac68d9a838e00dd0ffaedefaa0b..763c5f82705179998a33d32fbf00af0d9dee7c37 100644 (file)
@@ -1,4 +1,11 @@
 <?php
+// Own namespace
+namespace CoreFramework\Captcha;
+
+// Load framework stuff
+use CoreFramework\Generic\FrameworkInterface;
+
+
 /**
  * An interface for solveable CAPTCHAs
  *
@@ -35,7 +42,5 @@ interface SolveableCaptcha extends FrameworkInterface {
         * @return      void
         */
        function renderCode ();
-}
 
-// [EOF]
-?>
+}