| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 9 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 27 | 1 | public function create(array $data): EntryIdentifiable |
|
| 28 | { |
||
| 29 | 1 | $values = new ScalarValues($data); |
|
| 30 | 1 | return new Moneda( |
|
| 31 | 1 | $values->string('id'), |
|
| 32 | 1 | $values->string('texto'), |
|
| 33 | 1 | $values->int('decimales'), |
|
| 34 | 1 | $values->int('porcentaje_variacion'), |
|
| 35 | 1 | $values->timestamp('vigencia_desde'), |
|
| 36 | 1 | $values->timestamp('vigencia_hasta'), |
|
| 37 | ); |
||
| 40 |