Skip to content
Snippets Groups Projects
Verified Commit 442f147b authored by Lee Rowlands's avatar Lee Rowlands
Browse files

Issue #3412459 by viren18febS, mstrelan, smustgrave, longwave, larowlan:...

Issue #3412459 by viren18febS, mstrelan, smustgrave, longwave, larowlan: Incorrect typehint of LOGGED_IN and LOGGED_OUT consts in UserAuthenticationController
parent 716a1028
No related branches found
No related tags found
No related merge requests found
...@@ -29,14 +29,14 @@ class UserAuthenticationController extends ControllerBase implements ContainerIn ...@@ -29,14 +29,14 @@ class UserAuthenticationController extends ControllerBase implements ContainerIn
* *
* @var string * @var string
*/ */
const LOGGED_IN = 1; const LOGGED_IN = '1';
/** /**
* String sent in responses, to describe the user as being logged out. * String sent in responses, to describe the user as being logged out.
* *
* @var string * @var string
*/ */
const LOGGED_OUT = 0; const LOGGED_OUT = '0';
/** /**
* The user flood control service. * The user flood control service.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment