diff options
-rw-r--r-- | demos/blog/protected/Common/BlogUserManager.php | 2 | ||||
-rw-r--r-- | demos/chat/protected/App_Code/ChatUserManager.php | 2 | ||||
-rw-r--r-- | demos/time-tracker/protected/App_Code/UserManager.php | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/demos/blog/protected/Common/BlogUserManager.php b/demos/blog/protected/Common/BlogUserManager.php index 931b09db..efaa7f1f 100644 --- a/demos/blog/protected/Common/BlogUserManager.php +++ b/demos/blog/protected/Common/BlogUserManager.php @@ -85,7 +85,7 @@ class BlogUserManager extends TModule implements IUserManager * @return TUser the user instance generated based on the cookie auth data, null if the cookie does not have valid auth data.
* @since 3.1.1
*/
- public function getUserFromCookie($cookie);
+ public function getUserFromCookie($cookie)
{
// do nothing since we don't support cookie-based auth in this example
return null;
diff --git a/demos/chat/protected/App_Code/ChatUserManager.php b/demos/chat/protected/App_Code/ChatUserManager.php index ff751f2b..f28ee362 100644 --- a/demos/chat/protected/App_Code/ChatUserManager.php +++ b/demos/chat/protected/App_Code/ChatUserManager.php @@ -74,7 +74,7 @@ class ChatUserManager extends TModule implements IUserManager * @return TUser the user instance generated based on the cookie auth data, null if the cookie does not have valid auth data.
* @since 3.1.1
*/
- public function getUserFromCookie($cookie);
+ public function getUserFromCookie($cookie)
{
// do nothing since we don't support cookie-based auth in this example
return null;
diff --git a/demos/time-tracker/protected/App_Code/UserManager.php b/demos/time-tracker/protected/App_Code/UserManager.php index 769e2463..66eecb95 100644 --- a/demos/time-tracker/protected/App_Code/UserManager.php +++ b/demos/time-tracker/protected/App_Code/UserManager.php @@ -80,7 +80,7 @@ class UserManager extends TModule implements IUserManager * @return TUser the user instance generated based on the cookie auth data, null if the cookie does not have valid auth data.
* @since 3.1.1
*/
- public function getUserFromCookie($cookie);
+ public function getUserFromCookie($cookie)
{
// do nothing since we don't support cookie-based auth in this example
return null;
|