From 6f468118ae5e5c113f316476465286e1362cd72b Mon Sep 17 00:00:00 2001 From: Thomas Portelange Date: Tue, 17 May 2016 14:59:02 +0200 Subject: [PATCH] sqlite3 compat --- src/DatabaseProxy.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/DatabaseProxy.php b/src/DatabaseProxy.php index 76d5873..b3970a4 100644 --- a/src/DatabaseProxy.php +++ b/src/DatabaseProxy.php @@ -224,4 +224,9 @@ public function random() { return call_user_func_array([$this->realConn, __FUNCTION__], func_get_args()); } + + public function clearTable($table) + { + return call_user_func_array([$this->realConn, __FUNCTION__], func_get_args()); + } }