| Total Lines | 10 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 43 | 8 | public function quote($value, $type = ParameterType::STRING) : string |
|
| 44 | { |
||
| 45 | $val = parent::quote($value, $type); |
||
| 46 | |||
| 47 | // Fix for a driver version terminating all values with null byte |
||
| 48 | if (strpos($val, "\0") !== false) { |
||
| 49 | 236 | $val = substr($val, 0, -1); |
|
| 50 | } |
||
| 51 | 236 | ||
| 52 | return $val; |
||
| 53 | } |
||
| 63 |