| @@ 73-80 (lines=8) @@ | ||
| 70 | return implode(',', $value); |
|
| 71 | } |
|
| 72 | ||
| 73 | public function toArray() |
|
| 74 | { |
|
| 75 | return parent::toArray() + [ |
|
| 76 | 'min' => $this->getMin(), |
|
| 77 | 'max' => $this->getMax(), |
|
| 78 | 'showCheckAll' => $this->isShowCheckAll(), |
|
| 79 | ]; |
|
| 80 | } |
|
| 81 | } |
|
| 82 | ||
| @@ 55-62 (lines=8) @@ | ||
| 52 | ]; |
|
| 53 | } |
|
| 54 | ||
| 55 | public function toArray() |
|
| 56 | { |
|
| 57 | return parent::toArray() + [ |
|
| 58 | 'min' => $this->getMin(), |
|
| 59 | 'max' => $this->getMax(), |
|
| 60 | 'step' => $this->step, |
|
| 61 | ]; |
|
| 62 | } |
|
| 63 | } |
|
| 64 | ||