| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 61 | public function toArray() : array |
||
| 62 | { |
||
| 63 | return [ |
||
| 64 | 'in' => $this->in, |
||
| 65 | 'name' => $this->name, |
||
| 66 | 'description' => $this->description, |
||
| 67 | 'required' => $this->required, |
||
| 68 | 'allowEmptyValue' => $this->allowEmptyValue, |
||
| 69 | 'deprecated' => $this->deprecated, |
||
| 70 | ]; |
||
| 73 |