Skip to content

Commit 355570e

Browse files
committed
ASV: suppress return type deprecation warning
Forward compatibility for PHP 8.1: This annotation suppresses the "Deprecated: Return type of mle86\Value\AbstractSerializableValue:: jsonSerialize() should either be compatible with JsonSerializable:: jsonSerialize(): mixed" warning (without having to add an explicit "mixed" return type which would not work with PHP7).
1 parent 39872c5 commit 355570e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/AbstractSerializableValue.php

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ public function __toString(): string
3434
*
3535
* @return mixed
3636
*/
37+
#[\ReturnTypeWillChange]
3738
public function jsonSerialize()
3839
{
3940
return $this->value();

0 commit comments

Comments
 (0)