Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 9 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
56 | 1 | public function toArray(): array |
|
57 | { |
||
58 | 1 | return array_merge($this->values, [ |
|
59 | 1 | 'key' => $this->key, |
|
60 | 1 | 'prepend' => $this->prepend, |
|
61 | 1 | 'label' => $this->label, |
|
62 | 1 | 'placeholder' => $this->placeholder, |
|
63 | 1 | 'description' => $this->description, |
|
64 | 1 | 'value' => $this->value(), |
|
65 | 1 | 'locale' => $this->locale, |
|
66 | 'hint' => null, // Hint placeholder to show url hint when it already exists |
||
67 | ]); |
||
70 |