兼容php8语法

This commit is contained in:
Anyon 2022-05-25 11:48:22 +08:00
parent cfe3e83798
commit a598aaa2b8
2 changed files with 5 additions and 1 deletions

2
We.php
View File

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

View File

@ -77,6 +77,7 @@ class DataArray implements ArrayAccess
* @param string $offset
* @param string|array|null|integer $value
*/
#[\ReturnTypeWillChange]
public function offsetSet($offset, $value)
{
if (is_null($offset)) {
@ -91,6 +92,7 @@ class DataArray implements ArrayAccess
* @param string $offset
* @return bool
*/
#[\ReturnTypeWillChange]
public function offsetExists($offset)
{
return isset($this->config[$offset]);
@ -100,6 +102,7 @@ class DataArray implements ArrayAccess
* 清理配置项
* @param string|null $offset
*/
#[\ReturnTypeWillChange]
public function offsetUnset($offset = null)
{
if (is_null($offset)) {
@ -114,6 +117,7 @@ class DataArray implements ArrayAccess
* @param string|null $offset
* @return array|string|null
*/
#[\ReturnTypeWillChange]
public function offsetGet($offset = null)
{
if (is_null($offset)) {