From c82b15c33200efad56149df9a2499965f30bf8a5 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sat, 9 Jul 2016 16:26:09 +0200 Subject: [PATCH] Fix parameter for jsonSerialize --- Message/ResponseAbstract.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Message/ResponseAbstract.php b/Message/ResponseAbstract.php index a833680f1..ddf9525b2 100644 --- a/Message/ResponseAbstract.php +++ b/Message/ResponseAbstract.php @@ -150,7 +150,7 @@ abstract class ResponseAbstract implements MessageInterface, \JsonSerializable /** * {@inheritdoc} */ - public function jsonSerialize(int $options = 0) : string + public function jsonSerialize() { return json_encode($this->toArray()); }