Clean wrong whitespaces

This commit is contained in:
Nicolas Grekas 2015-08-05 17:43:06 +02:00
parent 805cd9fd61
commit 7fdba25e4f
1 changed files with 2 additions and 2 deletions

View File

@ -161,10 +161,10 @@ class DbalSessionHandler implements \SessionHandlerInterface
$mergeStmt->bindValue(':time', time(), \PDO::PARAM_INT);
//Oracle has a bug that will intermitently happen if you
//have only 1 bind on a CLOB field for 2 different statements
//have only 1 bind on a CLOB field for 2 different statements
//(INSERT and UPDATE in this case)
if ('oracle' == $this->con->getDatabasePlatform()->getName()) {
$mergeStmt->bindParam(':data2', $encoded, \PDO::PARAM_STR);
$mergeStmt->bindParam(':data2', $encoded, \PDO::PARAM_STR);
}
$mergeStmt->execute();