Route类调整

This commit is contained in:
thinkphp
2016-02-29 13:55:55 +08:00
parent d93d0feb2a
commit 0ab55d6246
4 changed files with 6 additions and 7 deletions

View File

@@ -30,11 +30,11 @@ class Email
* 通知发送接口
* @access public
* @param string $msg 日志信息
* @return void
* @return bool
*/
public function send($msg = '')
{
error_log($msg, 1, $this->config['address']);
return error_log($msg, 1, $this->config['address']);
}
}