ComposerUpdate

This commit is contained in:
Anyon 2019-11-25 19:03:55 +08:00
parent e1b06ff9bc
commit ec8d5b602d
3 changed files with 18 additions and 37 deletions

View File

@ -401,12 +401,12 @@
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/zoujingli/ThinkLibrary.git", "url": "https://github.com/zoujingli/ThinkLibrary.git",
"reference": "b2d566a6bdd14c91b84b4d4351f67d2c6048dfef" "reference": "c76003332a6c0277186507429baca6dfea6f9d15"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/b2d566a6bdd14c91b84b4d4351f67d2c6048dfef", "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/c76003332a6c0277186507429baca6dfea6f9d15",
"reference": "b2d566a6bdd14c91b84b4d4351f67d2c6048dfef", "reference": "c76003332a6c0277186507429baca6dfea6f9d15",
"shasum": "", "shasum": "",
"mirrors": [ "mirrors": [
{ {
@ -426,7 +426,7 @@
"qiniu/php-sdk": "^7.2", "qiniu/php-sdk": "^7.2",
"topthink/framework": "5.1.*" "topthink/framework": "5.1.*"
}, },
"time": "2019-11-25T10:37:39+00:00", "time": "2019-11-25T10:59:35+00:00",
"type": "library", "type": "library",
"installation-source": "dist", "installation-source": "dist",
"autoload": { "autoload": {

View File

@ -86,14 +86,17 @@ abstract class Controller extends \stdClass
/** /**
* Controller destruct * Controller destruct
* @throws \Exception
*/ */
public function __destruct() public function __destruct()
{ {
$this->request = request(); $method = "_{$this->request->action()}_{$this->request->method()}";
$action = $this->request->action(); if (method_exists($this, $method)) try {
$method = strtolower($this->request->method()); call_user_func_array([$this, $method], $this->request->route());
if (method_exists($this, $callback = "_{$action}_{$method}")) { } catch (HttpResponseException $exception) {
call_user_func_array([$this, $callback], $this->request->route()); $exception->getResponse()->send();
} catch (\Exception $exception) {
throw $exception;
} }
} }

View File

@ -33,32 +33,6 @@ class SystemService extends Service
*/ */
protected $data = []; protected $data = [];
/**
* 设置配置数据
* @param string $name 配置名称
* @param string $value 配置内容
* @return static
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function set($name, $value = '')
{
}
/**
* 读取配置数据
* @param string $name
* @return array|mixed|string
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function get($name)
{
}
/** /**
* 数据增量保存 * 数据增量保存
@ -67,9 +41,11 @@ class SystemService extends Service
* @param string $key 条件主键限制 * @param string $key 条件主键限制
* @param array $where 其它的where条件 * @param array $where 其它的where条件
* @return bool|int|mixed|string * @return bool|int|mixed|string
* @throws \think\Exception
* @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException * @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
* @throws \think\exception\PDOException
*/ */
public function save($dbQuery, $data, $key = 'id', $where = []) public function save($dbQuery, $data, $key = 'id', $where = [])
{ {
@ -92,9 +68,11 @@ class SystemService extends Service
* @param string $name 数据名称 * @param string $name 数据名称
* @param mixed $value 数据内容 * @param mixed $value 数据内容
* @return boolean * @return boolean
* @throws \think\Exception
* @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException * @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
* @throws \think\exception\PDOException
*/ */
public function setData($name, $value) public function setData($name, $value)
{ {