From f883ca5aaccca944e3407a85447710db7d11da91 Mon Sep 17 00:00:00 2001 From: thinkphp Date: Thu, 11 Feb 2016 09:25:41 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0Test=20=E6=97=A5=E5=BF=97?= =?UTF-8?q?=E9=A9=B1=E5=8A=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- library/think/log/driver/Test.php | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 library/think/log/driver/Test.php 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 = []) + { + } + +}