]> git.mxchange.org Git - core.git/blobdiff - inc/main/classes/auth/class_CookieAuth.php
Continued:
[core.git] / inc / main / classes / auth / class_CookieAuth.php
index 61e89207e69930465717185449bd5c1bf8612fe6..b25213ae22b15c1df4fb2fccde81ece7d4117f36 100644 (file)
@@ -1,4 +1,11 @@
 <?php
+// Own namespace
+namespace CoreFramework\Auth;
+
+// Import framework stuff
+use CoreFramework\Object\BaseFrameworkSystem;
+use CoreFramework\Registry\Registerable;
+
 /**
  * A cookie-bases authorization class
  *
@@ -109,14 +116,11 @@ class CookieAuth extends BaseFrameworkSystem implements Authorizeable, Registera
        /**
         * Updates the authorization data and/or sets additional tracking data
         *
-        * @param       $requestInstance        An instance of a Requestable class
         * @return      void
         */
        public function updateAuthData () {
                $this->getResponseInstance()->refreshCookie('username');
                $this->getResponseInstance()->refreshCookie('u_hash');
        }
-}
 
-// [EOF]
-?>
+}