| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | 2 | public function __construct( |
|
| 17 | string $scheme, |
||
| 18 | string $bearerFormat = null, |
||
| 19 | string $description = null, |
||
| 20 | Extensions $extensions = null |
||
| 21 | ) { |
||
| 22 | 2 | parent::__construct( |
|
| 23 | 2 | SecurityScheme::TYPE_HTTP, |
|
| 24 | $description, |
||
| 25 | $extensions |
||
| 26 | ); |
||
| 27 | 2 | $this->scheme = $scheme; |
|
| 28 | 2 | $this->bearerFormat = $bearerFormat; |
|
| 29 | } |
||
| 30 | |||
| 60 |