|
@@ 1950-1952 (lines=3) @@
|
| 1947 |
|
$this->getSecondaryAuthenticationProviders(); |
| 1948 |
|
break; |
| 1949 |
|
|
| 1950 |
|
case self::ACTION_LOGIN_CONTINUE: |
| 1951 |
|
$state = $this->request->getSession()->getSecret( 'AuthManager::authnState' ); |
| 1952 |
|
return is_array( $state ) ? $state['continueRequests'] : []; |
| 1953 |
|
|
| 1954 |
|
case self::ACTION_CREATE_CONTINUE: |
| 1955 |
|
$state = $this->request->getSession()->getSecret( 'AuthManager::accountCreationState' ); |
|
@@ 1954-1956 (lines=3) @@
|
| 1951 |
|
$state = $this->request->getSession()->getSecret( 'AuthManager::authnState' ); |
| 1952 |
|
return is_array( $state ) ? $state['continueRequests'] : []; |
| 1953 |
|
|
| 1954 |
|
case self::ACTION_CREATE_CONTINUE: |
| 1955 |
|
$state = $this->request->getSession()->getSecret( 'AuthManager::accountCreationState' ); |
| 1956 |
|
return is_array( $state ) ? $state['continueRequests'] : []; |
| 1957 |
|
|
| 1958 |
|
case self::ACTION_LINK: |
| 1959 |
|
$providers = array_filter( $this->getPrimaryAuthenticationProviders(), function ( $p ) { |
|
@@ 1973-1975 (lines=3) @@
|
| 1970 |
|
$providerAction = self::ACTION_REMOVE; |
| 1971 |
|
break; |
| 1972 |
|
|
| 1973 |
|
case self::ACTION_LINK_CONTINUE: |
| 1974 |
|
$state = $this->request->getSession()->getSecret( 'AuthManager::accountLinkState' ); |
| 1975 |
|
return is_array( $state ) ? $state['continueRequests'] : []; |
| 1976 |
|
|
| 1977 |
|
case self::ACTION_CHANGE: |
| 1978 |
|
case self::ACTION_REMOVE: |