Total Complexity | 5 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Coverage | 75% |
Changes | 0 |
1 | <?php |
||
24 | class SQLServer extends AbstractDBHelper |
||
25 | { |
||
26 | /** |
||
27 | * Set the right enclosure |
||
28 | * |
||
29 | * @return string |
||
30 | */ |
||
31 | 1 | public function getEnclosureForCSV(): string |
|
32 | { |
||
33 | 1 | return chr(0); |
|
34 | } |
||
35 | |||
36 | /** |
||
37 | * {@inheritdoc} |
||
38 | */ |
||
39 | 2 | public function loadData(string $table, string $fname, array $fields, string $mode): string |
|
58 | } |
||
59 | } |
||
60 |