]> 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 b6890c16fc1f86382271e7f81452f93402725c7d..b25213ae22b15c1df4fb2fccde81ece7d4117f36 100644 (file)
@@ -3,6 +3,7 @@
 namespace CoreFramework\Auth;
 
 // Import framework stuff
+use CoreFramework\Object\BaseFrameworkSystem;
 use CoreFramework\Registry\Registerable;
 
 /**
@@ -115,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]
-?>
+}