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