Conditions | 3 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 12 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
26 | public function create(array $data): EntryIdentifiable |
||
27 | { |
||
28 | return new RegimenFiscal( |
||
29 | $data['id'], |
||
30 | $data['texto'], |
||
31 | (bool) $data['aplica_fisica'], |
||
32 | (bool) $data['aplica_moral'], |
||
33 | ($data['vigencia_desde']) ? strtotime($data['vigencia_desde']) : 0, |
||
34 | ($data['vigencia_hasta']) ? strtotime($data['vigencia_hasta']) : 0 |
||
35 | ); |
||
38 |