修改版本号

This commit is contained in:
邹景立 2023-10-10 17:39:47 +08:00
parent 5130bac7c5
commit 9becf988c9
3 changed files with 5 additions and 6 deletions

2
We.php
View File

@ -94,7 +94,7 @@ class We
* 定义当前版本 * 定义当前版本
* @var string * @var string
*/ */
const VERSION = '1.2.48'; const VERSION = '1.2.49';
/** /**
* 静态配置 * 静态配置

View File

@ -78,6 +78,7 @@ class DataArray implements ArrayAccess
* 设置配置项值 * 设置配置项值
* @param string $offset * @param string $offset
* @param string|array|null|integer $value * @param string|array|null|integer $value
* @return void
*/ */
#[\ReturnTypeWillChange] #[\ReturnTypeWillChange]
public function offsetSet($offset, $value) public function offsetSet($offset, $value)
@ -103,6 +104,7 @@ class DataArray implements ArrayAccess
/** /**
* 清理配置项 * 清理配置项
* @param string|null $offset * @param string|null $offset
* @return void
*/ */
#[\ReturnTypeWillChange] #[\ReturnTypeWillChange]
public function offsetUnset($offset = null) public function offsetUnset($offset = null)
@ -117,14 +119,12 @@ class DataArray implements ArrayAccess
/** /**
* 获取配置项参数 * 获取配置项参数
* @param string|null $offset * @param string|null $offset
* @return array|string|null|mixed * @return mixed
*/ */
#[\ReturnTypeWillChange] #[\ReturnTypeWillChange]
public function offsetGet($offset = null) public function offsetGet($offset = null)
{ {
if (is_null($offset)) { if (is_null($offset)) return $this->config;
return $this->config;
}
return isset($this->config[$offset]) ? $this->config[$offset] : null; return isset($this->config[$offset]) ? $this->config[$offset] : null;
} }
} }

View File

@ -17,7 +17,6 @@
namespace WePay; namespace WePay;
use WeChat\Contracts\BasicWePay; use WeChat\Contracts\BasicWePay;
use WeChat\Contracts\Tools;
/** /**
* 微信分账 * 微信分账