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