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