Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
54 | 2 | public function toArray(): array |
|
55 | { |
||
56 | 2 | return array_merge($this->values, [ |
|
57 | 2 | 'key' => $this->key, |
|
58 | 2 | 'prepend' => $this->prepend, |
|
59 | 2 | 'label' => $this->label, |
|
60 | 2 | 'placeholder' => $this->placeholder, |
|
61 | 2 | 'description' => $this->description, |
|
62 | 2 | 'value' => $this->value(), |
|
63 | ]); |
||
65 | } |