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()); + } }