| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | public function performUpdate() |
||
| 13 | { |
||
| 14 | $this->model->email = $this->request->get('email'); |
||
| 15 | $this->model->first_name = $this->request->get('first_name'); |
||
| 16 | $this->model->last_name = $this->request->get('last_name'); |
||
| 17 | $this->model->locale = $this->request->get('locale', 'nl'); |
||
| 18 | |||
| 19 | if ($this->request->has('password')) { |
||
| 20 | $this->model->password = $this->request->get('password'); |
||
| 21 | } |
||
| 22 | } |
||
| 23 | } |
||
| 24 |