mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-06 03:58:03 +08:00
兼容php8语法
This commit is contained in:
parent
cfe3e83798
commit
a598aaa2b8
2
We.php
2
We.php
@ -91,7 +91,7 @@ class We
|
|||||||
* 定义当前版本
|
* 定义当前版本
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
const VERSION = '1.2.35';
|
const VERSION = '1.2.36';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 静态配置
|
* 静态配置
|
||||||
|
@ -77,6 +77,7 @@ class DataArray implements ArrayAccess
|
|||||||
* @param string $offset
|
* @param string $offset
|
||||||
* @param string|array|null|integer $value
|
* @param string|array|null|integer $value
|
||||||
*/
|
*/
|
||||||
|
#[\ReturnTypeWillChange]
|
||||||
public function offsetSet($offset, $value)
|
public function offsetSet($offset, $value)
|
||||||
{
|
{
|
||||||
if (is_null($offset)) {
|
if (is_null($offset)) {
|
||||||
@ -91,6 +92,7 @@ class DataArray implements ArrayAccess
|
|||||||
* @param string $offset
|
* @param string $offset
|
||||||
* @return bool
|
* @return bool
|
||||||
*/
|
*/
|
||||||
|
#[\ReturnTypeWillChange]
|
||||||
public function offsetExists($offset)
|
public function offsetExists($offset)
|
||||||
{
|
{
|
||||||
return isset($this->config[$offset]);
|
return isset($this->config[$offset]);
|
||||||
@ -100,6 +102,7 @@ class DataArray implements ArrayAccess
|
|||||||
* 清理配置项
|
* 清理配置项
|
||||||
* @param string|null $offset
|
* @param string|null $offset
|
||||||
*/
|
*/
|
||||||
|
#[\ReturnTypeWillChange]
|
||||||
public function offsetUnset($offset = null)
|
public function offsetUnset($offset = null)
|
||||||
{
|
{
|
||||||
if (is_null($offset)) {
|
if (is_null($offset)) {
|
||||||
@ -114,6 +117,7 @@ class DataArray implements ArrayAccess
|
|||||||
* @param string|null $offset
|
* @param string|null $offset
|
||||||
* @return array|string|null
|
* @return array|string|null
|
||||||
*/
|
*/
|
||||||
|
#[\ReturnTypeWillChange]
|
||||||
public function offsetGet($offset = null)
|
public function offsetGet($offset = null)
|
||||||
{
|
{
|
||||||
if (is_null($offset)) {
|
if (is_null($offset)) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user