Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
28 | public function __construct() |
||
29 | { |
||
30 | $this->resources['john'] = new ResourceDescriptor( |
||
31 | 'john', |
||
32 | [ |
||
33 | 'acct:[email protected]:443', |
||
34 | 'https://my-service.com:443/+john', |
||
35 | ], |
||
36 | [], |
||
37 | [ |
||
38 | new Link('http://openid.net/specs/connect/1.0/issuer', null, 'https://server.example.com', [], []), |
||
39 | ] |
||
40 | ); |
||
41 | } |
||
42 | |||
57 |