Total Complexity | 6 |
Total Lines | 39 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | class Parameter |
||
17 | { |
||
18 | private $name; |
||
19 | private $in; |
||
20 | private $description; |
||
21 | private $required; |
||
22 | private $deprecated; |
||
23 | private $allowEmptyValue; |
||
24 | private $schema; |
||
25 | private $explode; |
||
26 | private $allowReserved; |
||
27 | private $style; |
||
28 | private $example; |
||
29 | private $examples; |
||
30 | private $content; |
||
31 | |||
32 | public function __construct(string $name, string $in, string $description = '', bool $required = false, bool $deprecated = false, bool $allowEmptyValue = false, array $schema = [], string $style = null, bool $explode = false, bool $allowReserved = false, $example = null, $examples = [], array $content = []) |
||
58 |