Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
27 | 2 | public function create(array $data): EntryIdentifiable |
|
28 | { |
||
29 | 2 | $values = new ScalarValues($data); |
|
30 | 2 | return new PeriodicidadPago( |
|
31 | 2 | $values->string('id'), |
|
32 | 2 | $values->string('texto'), |
|
33 | 2 | $values->timestamp('vigencia_desde'), |
|
34 | 2 | $values->timestamp('vigencia_hasta'), |
|
35 | 2 | ); |
|
38 |