diff --git a/library/think/log/driver/Test.php b/library/think/log/driver/Test.php new file mode 100644 index 00000000..f51a232d --- /dev/null +++ b/library/think/log/driver/Test.php @@ -0,0 +1,28 @@ + +// +---------------------------------------------------------------------- +namespace think\log\driver; + +/** + * 模拟测试输出 + */ +class Test +{ + /** + * 日志写入接口 + * @access public + * @param array $log 日志信息 + * @return void + */ + public function save(array $log = []) + { + } + +}