|
@@ 1963-1965 (lines=3) @@
|
| 1960 |
|
$this->getSecondaryAuthenticationProviders(); |
| 1961 |
|
break; |
| 1962 |
|
|
| 1963 |
|
case self::ACTION_LOGIN_CONTINUE: |
| 1964 |
|
$state = $this->request->getSession()->getSecret( 'AuthManager::authnState' ); |
| 1965 |
|
return is_array( $state ) ? $state['continueRequests'] : []; |
| 1966 |
|
|
| 1967 |
|
case self::ACTION_CREATE_CONTINUE: |
| 1968 |
|
$state = $this->request->getSession()->getSecret( 'AuthManager::accountCreationState' ); |
|
@@ 1967-1969 (lines=3) @@
|
| 1964 |
|
$state = $this->request->getSession()->getSecret( 'AuthManager::authnState' ); |
| 1965 |
|
return is_array( $state ) ? $state['continueRequests'] : []; |
| 1966 |
|
|
| 1967 |
|
case self::ACTION_CREATE_CONTINUE: |
| 1968 |
|
$state = $this->request->getSession()->getSecret( 'AuthManager::accountCreationState' ); |
| 1969 |
|
return is_array( $state ) ? $state['continueRequests'] : []; |
| 1970 |
|
|
| 1971 |
|
case self::ACTION_LINK: |
| 1972 |
|
$providers = array_filter( $this->getPrimaryAuthenticationProviders(), function ( $p ) { |
|
@@ 1986-1988 (lines=3) @@
|
| 1983 |
|
$providerAction = self::ACTION_REMOVE; |
| 1984 |
|
break; |
| 1985 |
|
|
| 1986 |
|
case self::ACTION_LINK_CONTINUE: |
| 1987 |
|
$state = $this->request->getSession()->getSecret( 'AuthManager::accountLinkState' ); |
| 1988 |
|
return is_array( $state ) ? $state['continueRequests'] : []; |
| 1989 |
|
|
| 1990 |
|
case self::ACTION_CHANGE: |
| 1991 |
|
case self::ACTION_REMOVE: |