Commit bc5028eb by Alexander Makarov

Renamed parameter to match description better

parent 608e9012
......@@ -538,13 +538,13 @@ class Connection extends Component
/**
* Quotes a string value for use in a query.
* Note that if the parameter is not a string, it will be returned without change.
* @param string $str string to be quoted
* @param string $value string to be quoted
* @return string the properly quoted string
* @see http://www.php.net/manual/en/function.PDO-quote.php
*/
public function quoteValue($str)
public function quoteValue($value)
{
return $this->getSchema()->quoteValue($str);
return $this->getSchema()->quoteValue($value);
}
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment