Commit fcbaf45a authored by Alex Ne's avatar Alex Ne

дамп параметров

parent cc58c4da
...@@ -335,7 +335,8 @@ class X_DB_MySQLi { ...@@ -335,7 +335,8 @@ class X_DB_MySQLi {
*/ */
public function delete_in($table, $column, $data) { public function delete_in($table, $column, $data) {
if ( ! is_array($data)) { if ( ! is_array($data)) {
throw new XDatabaseParamError("Param 'data' must have type array in function 'db->delete_in( string table, sting column, array data)'", 0); throw new XDatabaseParamError("Param 'data' must have type array in function 'db->delete_in( string table, sting column, array data)'", 0,
["table" => $table, "column" => $column, "data" => $data]);
} }
if ( ! (count($data) > 0)) { if ( ! (count($data) > 0)) {
......
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