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