|
@@ 2018-2020 (lines=3) @@
|
| 2015 |
|
$this->getSecondaryAuthenticationProviders(); |
| 2016 |
|
break; |
| 2017 |
|
|
| 2018 |
|
case self::ACTION_LOGIN_CONTINUE: |
| 2019 |
|
$state = $this->request->getSession()->getSecret( 'AuthManager::authnState' ); |
| 2020 |
|
return is_array( $state ) ? $state['continueRequests'] : []; |
| 2021 |
|
|
| 2022 |
|
case self::ACTION_CREATE_CONTINUE: |
| 2023 |
|
$state = $this->request->getSession()->getSecret( 'AuthManager::accountCreationState' ); |
|
@@ 2022-2024 (lines=3) @@
|
| 2019 |
|
$state = $this->request->getSession()->getSecret( 'AuthManager::authnState' ); |
| 2020 |
|
return is_array( $state ) ? $state['continueRequests'] : []; |
| 2021 |
|
|
| 2022 |
|
case self::ACTION_CREATE_CONTINUE: |
| 2023 |
|
$state = $this->request->getSession()->getSecret( 'AuthManager::accountCreationState' ); |
| 2024 |
|
return is_array( $state ) ? $state['continueRequests'] : []; |
| 2025 |
|
|
| 2026 |
|
case self::ACTION_LINK: |
| 2027 |
|
$providers = array_filter( $this->getPrimaryAuthenticationProviders(), function ( $p ) { |
|
@@ 2041-2043 (lines=3) @@
|
| 2038 |
|
$providerAction = self::ACTION_REMOVE; |
| 2039 |
|
break; |
| 2040 |
|
|
| 2041 |
|
case self::ACTION_LINK_CONTINUE: |
| 2042 |
|
$state = $this->request->getSession()->getSecret( 'AuthManager::accountLinkState' ); |
| 2043 |
|
return is_array( $state ) ? $state['continueRequests'] : []; |
| 2044 |
|
|
| 2045 |
|
case self::ACTION_CHANGE: |
| 2046 |
|
case self::ACTION_REMOVE: |