Conditions | 3 |
Paths | 2 |
Total Lines | 7 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 12 |
Changes | 0 |
1 | <?php |
||
17 | public function bindParam($column, &$variable, $type = ParameterType::STRING, $length = null, $driverOptions = null) |
||
18 | { |
||
19 | if ($type === ParameterType::LARGE_OBJECT && $driverOptions === null) { |
||
20 | $driverOptions = PDO::SQLSRV_ENCODING_BINARY; |
||
21 | } |
||
22 | |||
23 | return parent::bindParam($column, $variable, $type, $length, $driverOptions); |
||
24 | } |
||
34 |