]> git.mxchange.org Git - core.git/blobdiff - inc/main/classes/auth/class_CookieAuth.php
renamed lib-local.php -> lib-lfdb.php because it really loads the "legendary"
[core.git] / inc / main / classes / auth / class_CookieAuth.php
index b6890c16fc1f86382271e7f81452f93402725c7d..a98999f4c954eb7d7936d98db081612894b9e311 100644 (file)
@@ -3,7 +3,9 @@
 namespace CoreFramework\Auth;
 
 // Import framework stuff
+use CoreFramework\Object\BaseFrameworkSystem;
 use CoreFramework\Registry\Registerable;
+use CoreFramework\Response\Responseable;
 
 /**
  * A cookie-bases authorization class
@@ -115,14 +117,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]
-?>
+}