mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-05 19:41:44 +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
|
* @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 $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;
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -17,7 +17,6 @@
|
|||||||
namespace WePay;
|
namespace WePay;
|
||||||
|
|
||||||
use WeChat\Contracts\BasicWePay;
|
use WeChat\Contracts\BasicWePay;
|
||||||
use WeChat\Contracts\Tools;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 微信分账
|
* 微信分账
|
||||||
|
Loading…
x
Reference in New Issue
Block a user