| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 48 | public function execute() |
||
| 49 | { |
||
| 50 | $provider = $this->_request->getParam('provider'); |
||
| 51 | $isSecure = $this->_request->isSecure(); |
||
| 52 | $referer = $this->_request->getParam('referer'); |
||
| 53 | |||
| 54 | $response = $this->provider->setAutenticateAndReferer($provider, $isSecure, $referer); |
||
| 55 | // phpcs:ignore |
||
| 56 | return $this->_redirect($this->urlDecoder->decode($response['redirectUrl'])); |
||
| 57 | } |
||
| 59 |