| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | 2 | public function __construct( |
|
| 15 | string $openIdConnectUrl, |
||
| 16 | string $description = null, |
||
| 17 | Extensions $extensions = null |
||
| 18 | ) { |
||
| 19 | 2 | parent::__construct( |
|
| 20 | 2 | SecurityScheme::TYPE_OPEN_ID_CONNECT, |
|
| 21 | $description, |
||
| 22 | $extensions |
||
| 23 | ); |
||
| 24 | 2 | $this->openIdConnectUrl = $openIdConnectUrl; |
|
| 25 | } |
||
| 26 | |||
| 39 |