Total Complexity | 1 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class IdentityProviderResponse |
||
10 | { |
||
11 | |||
12 | public $uuid; |
||
13 | public $label; |
||
14 | public $idp_entity_id; |
||
15 | public $sp_entity_id; |
||
16 | public $sso_url; |
||
17 | public $certificate; |
||
18 | public $status; |
||
19 | public $links; |
||
20 | |||
21 | /** |
||
22 | * IdentityProviderResponse constructor. |
||
23 | * @param object $idp |
||
24 | */ |
||
25 | public function __construct($idp) |
||
37 |