X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fmain%2Fclasses%2Fauth%2Fclass_CookieAuth.php;h=b25213ae22b15c1df4fb2fccde81ece7d4117f36;hp=b6890c16fc1f86382271e7f81452f93402725c7d;hb=e27845b8bbbf6ab70a56e5a364ce2fdd96f833f0;hpb=68760af646a51cf18bd0e6e11e0ebfdeb324e0d2 diff --git a/inc/main/classes/auth/class_CookieAuth.php b/inc/main/classes/auth/class_CookieAuth.php index b6890c16..b25213ae 100644 --- a/inc/main/classes/auth/class_CookieAuth.php +++ b/inc/main/classes/auth/class_CookieAuth.php @@ -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] -?> +}