Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
35 | 2 | public function dataTable(): DataTable |
|
36 | { |
||
37 | 2 | return new DataTable('ccp_20_contenedores', new DataFields([ |
|
38 | 2 | new TextDataField('id'), |
|
39 | 2 | new TextDataField('texto'), |
|
40 | 2 | new TextDataField('descripcion'), |
|
41 | 2 | new DateDataField('vigencia_desde'), |
|
42 | 2 | new DateDataField('vigencia_hasta'), |
|
43 | ])); |
||
46 |