mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-05 01:42:45 +08:00
修改版本号
This commit is contained in:
parent
5130bac7c5
commit
9becf988c9
2
We.php
2
We.php
@ -94,7 +94,7 @@ class We
|
||||
* 定义当前版本
|
||||
* @var string
|
||||
*/
|
||||
const VERSION = '1.2.48';
|
||||
const VERSION = '1.2.49';
|
||||
|
||||
/**
|
||||
* 静态配置
|
||||
|
@ -78,6 +78,7 @@ class DataArray implements ArrayAccess
|
||||
* 设置配置项值
|
||||
* @param string $offset
|
||||
* @param string|array|null|integer $value
|
||||
* @return void
|
||||
*/
|
||||
#[\ReturnTypeWillChange]
|
||||
public function offsetSet($offset, $value)
|
||||
@ -103,6 +104,7 @@ class DataArray implements ArrayAccess
|
||||
/**
|
||||
* 清理配置项
|
||||
* @param string|null $offset
|
||||
* @return void
|
||||
*/
|
||||
#[\ReturnTypeWillChange]
|
||||
public function offsetUnset($offset = null)
|
||||
@ -117,14 +119,12 @@ class DataArray implements ArrayAccess
|
||||
/**
|
||||
* 获取配置项参数
|
||||
* @param string|null $offset
|
||||
* @return array|string|null|mixed
|
||||
* @return mixed
|
||||
*/
|
||||
#[\ReturnTypeWillChange]
|
||||
public function offsetGet($offset = null)
|
||||
{
|
||||
if (is_null($offset)) {
|
||||
return $this->config;
|
||||
}
|
||||
if (is_null($offset)) return $this->config;
|
||||
return isset($this->config[$offset]) ? $this->config[$offset] : null;
|
||||
}
|
||||
}
|
@ -17,7 +17,6 @@
|
||||
namespace WePay;
|
||||
|
||||
use WeChat\Contracts\BasicWePay;
|
||||
use WeChat\Contracts\Tools;
|
||||
|
||||
/**
|
||||
* 微信分账
|
||||
|
Loading…
x
Reference in New Issue
Block a user