Issue #3412459 by viren18febS, mstrelan, smustgrave, longwave, larowlan: Incorrect typehint of LOGGED_IN and LOGGED_OUT consts in UserAuthenticationController

merge-requests/6427/head
Lee Rowlands 2024-02-02 07:42:11 +10:00
parent 716a102849
commit 442f147b38
No known key found for this signature in database
GPG Key ID: 2B829A3DF9204DC4
1 changed files with 2 additions and 2 deletions

View File

@ -29,14 +29,14 @@ class UserAuthenticationController extends ControllerBase implements ContainerIn
*
* @var string
*/
const LOGGED_IN = 1;
const LOGGED_IN = '1';
/**
* String sent in responses, to describe the user as being logged out.
*
* @var string
*/
const LOGGED_OUT = 0;
const LOGGED_OUT = '0';
/**
* The user flood control service.