We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc79bf3 commit ad4c920Copy full SHA for ad4c920
1 file changed
system/Database/MySQLi/PreparedQuery.php
@@ -56,10 +56,12 @@ class PreparedQuery extends BasePreparedQuery implements PreparedQueryInterface
56
* override this method.
57
*
58
* @param string $sql
59
+ * @param array $options Passed to the connection's prepare statement.
60
+ * Unused in the MySQLi driver.
61
62
* @return mixed
63
*/
- public function _prepare(string $sql)
64
+ public function _prepare(string $sql, array $options = [])
65
{
66
// Mysqli driver doesn't like statements
67
// with terminating semicolons.
0 commit comments