| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 36 | public static function createFromArray(array $data): self |
||
| 37 | { |
||
| 38 | $model = new self(); |
||
| 39 | $model->height = (float) $data['height']; |
||
| 40 | $model->length = (float) $data['length']; |
||
| 41 | $model->weight = (float) $data['weight']; |
||
| 42 | $model->width = (float) $data['width']; |
||
| 43 | |||
| 44 | return $model; |
||
| 45 | } |
||
| 46 | |||
| 67 |