Commit 16ddeacf authored by Marco Pivetta's avatar Marco Pivetta Committed by GitHub

Merge pull request #2733 from lolli42/master

Fix type annotations for quote() of Connection interface
parents ec3e5107 9f715862
...@@ -48,10 +48,10 @@ interface Connection ...@@ -48,10 +48,10 @@ interface Connection
/** /**
* Quotes a string for use in a query. * Quotes a string for use in a query.
* *
* @param string $input * @param mixed $input
* @param integer $type * @param integer $type
* *
* @return string * @return mixed
*/ */
function quote($input, $type=\PDO::PARAM_STR); function quote($input, $type=\PDO::PARAM_STR);
......
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