| Conditions | 2 | 
| Paths | 2 | 
| Total Lines | 10 | 
| Code Lines | 5 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php declare(strict_types=1);  | 
            ||
| 43 | public function getRedirectUri(): string  | 
            ||
| 44 |     { | 
            ||
| 45 |         $redirectUri = (string)$this->get('REDIRECT_URI'); | 
            ||
| 46 |         if (empty($redirectUri)) { | 
            ||
| 47 | throw new RuntimeException(  | 
            ||
| 48 | sprintf(Message::ERROR_GET_ENV_VARIABLE, 'REDIRECT_URI')  | 
            ||
| 49 | );  | 
            ||
| 50 | }  | 
            ||
| 51 | |||
| 52 | return $redirectUri;  | 
            ||
| 53 | }  | 
            ||
| 79 |