X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fauth%2FAuthenticationRequest.php;h=420034191e41300709dfb25c318faa17bda756d0;hb=529fc12d2ad2032337594389448fdb5b55802830;hp=4744c4d4b98f10f2ef12a9f2de56769ac4bd1056;hpb=27a6845c2a675990b04dfead674c0d46d140aa17;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/auth/AuthenticationRequest.php b/includes/auth/AuthenticationRequest.php index 4744c4d4b9..420034191e 100644 --- a/includes/auth/AuthenticationRequest.php +++ b/includes/auth/AuthenticationRequest.php @@ -47,7 +47,8 @@ abstract class AuthenticationRequest { /** Indicates that the request is required by a primary authentication * provider. Since the user can choose which primary to authenticate with, - * the request might or might not end up being actually required. */ + * the request might or might not end up being actually required. + */ const PRIMARY_REQUIRED = 2; /** @var string|null The AuthManager::ACTION_* constant this request was @@ -57,14 +58,16 @@ abstract class AuthenticationRequest { public $action = null; /** @var int For login, continue, and link actions, one of self::OPTIONAL, - * self::REQUIRED, or self::PRIMARY_REQUIRED */ + * self::REQUIRED, or self::PRIMARY_REQUIRED + */ public $required = self::REQUIRED; /** @var string|null Return-to URL, in case of redirect */ public $returnToUrl = null; /** @var string|null Username. See AuthenticationProvider::getAuthenticationRequests() - * for details of what this means and how it behaves. */ + * for details of what this means and how it behaves. + */ public $username = null; /**