fixed php 8.1 type bugs

This commit is contained in:
Dennis Eichhorn 2022-03-22 17:34:58 +01:00
parent 07a89c7a1c
commit 0cefe850d3
5 changed files with 5 additions and 5 deletions

View File

@ -347,7 +347,7 @@ class Client
/**
* {@inheritdoc}
*/
public function jsonSerialize()
public function jsonSerialize() : mixed
{
return $this->toArray();
}

View File

@ -97,7 +97,7 @@ class ClientAttribute implements \JsonSerializable, ArrayableInterface
/**
* {@inheritdoc}
*/
public function jsonSerialize()
public function jsonSerialize() : mixed
{
return $this->toArray();
}

View File

@ -153,7 +153,7 @@ class ClientAttributeType implements \JsonSerializable, ArrayableInterface
/**
* {@inheritdoc}
*/
public function jsonSerialize()
public function jsonSerialize() : mixed
{
return $this->toArray();
}

View File

@ -129,7 +129,7 @@ class ClientAttributeTypeL11n implements \JsonSerializable, ArrayableInterface
/**
* {@inheritdoc}
*/
public function jsonSerialize()
public function jsonSerialize() : mixed
{
return $this->toArray();
}

View File

@ -248,7 +248,7 @@ class ClientAttributeValue implements \JsonSerializable, ArrayableInterface
/**
* {@inheritdoc}
*/
public function jsonSerialize()
public function jsonSerialize() : mixed
{
return $this->toArray();
}