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