| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types = 1); |
||
| 59 | public function __construct(string $name, bool $required, Schema $schema, string $in, $collectionFormat = null) |
||
| 60 | { |
||
| 61 | $this->name = $name; |
||
| 62 | $this->collectionFormat = $collectionFormat; |
||
| 63 | $this->schema = $schema; |
||
| 64 | $this->in = $in; |
||
| 65 | $this->required = $required; |
||
| 66 | } |
||
| 67 | |||
| 108 |