Skip to content

Commit 71b852d

Browse files
committed
removed quotes around the number in error message
1 parent ed5ab0e commit 71b852d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ public function bindParam($param, &$variable, int $type = ParameterType::STRING,
275275
{
276276
if (is_int($param)) {
277277
if (! isset($this->_paramMap[$param])) {
278-
throw new OCI8Exception(sprintf('Could not find variable mapping with index "%d", in the SQL statement', $param));
278+
throw new OCI8Exception(sprintf('Could not find variable mapping with index %d, in the SQL statement', $param));
279279
}
280280

281281
$param = $this->_paramMap[$param];

0 commit comments

Comments
 (0)