| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 61 | public function save() |
||
| 62 | { |
||
| 63 | $model = $this->getModel(); |
||
| 64 | |||
| 65 | list($startValue, $endValue) = $this->getValueFromRequest(); |
||
| 66 | $model->setAttribute($this->getStartName(), $this->prepareValue($startValue)); |
||
| 67 | $model->setAttribute($this->getEndName(), $this->prepareValue($endValue)); |
||
| 68 | } |
||
| 69 | } |
||
| 70 |