1
0
Fork 0
mirror of synced 2025-04-04 06:13:41 +03:00

fix deprecated methods + fix composer.json

This commit is contained in:
Евгений Гришагин 2024-07-01 12:21:16 +03:00
parent dbf4c9267a
commit 39d191361b
2 changed files with 5 additions and 5 deletions

View file

@ -16,7 +16,7 @@
"ext-curl": "*",
"ext-json": "*",
"ext-fileinfo": "*",
"symfony/dotenv": "3.4.*"
"symfony/dotenv": "3.4.*|6.4.*"
},
"require-dev": {
"phpunit/phpunit": "6.*",

View file

@ -171,7 +171,7 @@ class ApiResponse implements \ArrayAccess
* @throws \BadMethodCallException
* @return void
*/
public function offsetSet($offset, $value)
public function offsetSet(mixed $offset, mixed $value): void
{
throw new \BadMethodCallException('This activity not allowed');
}
@ -184,7 +184,7 @@ class ApiResponse implements \ArrayAccess
* @throws \BadMethodCallException
* @return void
*/
public function offsetUnset($offset)
public function offsetUnset(mixed $offset): void
{
throw new \BadMethodCallException('This call not allowed');
}
@ -196,7 +196,7 @@ class ApiResponse implements \ArrayAccess
*
* @return bool
*/
public function offsetExists($offset)
public function offsetExists(mixed $offset): bool
{
return isset($this->response[$offset]);
}
@ -210,7 +210,7 @@ class ApiResponse implements \ArrayAccess
*
* @return mixed
*/
public function offsetGet($offset)
public function offsetGet(mixed $offset): mixed
{
if (!isset($this->response[$offset])) {
throw new \InvalidArgumentException("Property \"$offset\" not found");