| Total Complexity | 1 |
| Total Lines | 29 |
| 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 $example; |
||
| 28 | private $examples; |
||
| 29 | private $content; |
||
| 30 | |||
| 31 | public function __construct(string $name, string $in, string $description = '', bool $required = false, bool $deprecated = false, bool $allowEmptyValue = false, array $schema = [], bool $explode = false, bool $allowReserved = false, $example = null, $examples = [], array $content = []) |
||
| 47 |