Total Complexity | 1 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | final class DbHelper |
||
8 | { |
||
9 | /** |
||
10 | * Adjust dbms specific escaping. |
||
11 | * |
||
12 | * @param string $sql string SQL statement to adjust. |
||
13 | * @param string $drivername string DBMS name. |
||
14 | * |
||
15 | * @return mixed |
||
16 | */ |
||
17 | public static function replaceQuotes(string $sql, string $drivername): string |
||
28 |