Conditions | 3 |
Paths | 3 |
Total Lines | 11 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
24 | public function getRedirectUrl() |
||
25 | { |
||
26 | echo '<pre>'; print_r($this->data); echo '</pre>'; |
||
27 | |||
28 | foreach ( $this->data->links ?? [] as $link ) { |
||
29 | if ( $link->rel === 'hpp' ) { |
||
30 | return $link->href; |
||
31 | } |
||
32 | } |
||
33 | |||
34 | throw new InvalidResponseException('Invalid response from windcave server'); |
||
35 | } |
||
42 | } |