Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
37 | 2 | public function dataTable(): DataTable |
|
38 | { |
||
39 | 2 | return new DataTable('ccp_20_municipios', new DataFields([ |
|
40 | 2 | new PaddingDataField('municipio', '0', 3), |
|
41 | 2 | new TextDataField('estado'), |
|
42 | 2 | new TextDataField('texto'), |
|
43 | 2 | new DateDataField('vigencia_desde'), |
|
44 | 2 | new DateDataField('vigencia_hasta'), |
|
45 | 2 | ]), ['municipio', 'estado']); |
|
46 | } |
||
48 |