Conditions | 2 |
Paths | 2 |
Total Lines | 15 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
15 | public function save($model) { |
||
16 | // $model->id = 1; |
||
17 | // if (!$model->validate()) { |
||
18 | // echo $model; |
||
19 | // var_dump($model->attributes); |
||
20 | // var_dump($model->errors); |
||
21 | // } else { |
||
22 | // echo $model . ' is saved' . "\n"; |
||
23 | // } |
||
24 | // return $model; |
||
25 | |||
26 | if ($model->save()) { |
||
27 | // echo $model->id . ' is saved' . "\n"; |
||
28 | return $model; |
||
29 | } else { |
||
30 | // var_dump($model->errors); |
||
33 | } |