Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
31 | 2 | protected function proct(ARContract $model, array $params): bool |
|
32 | { |
||
33 | 2 | $model->setScenario($this->scenario); |
|
34 | 2 | $model->load( |
|
35 | 2 | Yii::$app->request->getBodyParams() + $this->parseFileAttributes(), |
|
36 | '' |
||
37 | ); |
||
38 | |||
39 | 2 | return false !== $model->save() || $model->hasErrors(); |
|
40 | } |
||
42 |