From c2b8593d02ec6e1ef25f21c2005f32ef25426522 Mon Sep 17 00:00:00 2001 From: daniel Date: Mon, 30 Apr 2012 17:52:13 +0200 Subject: [PATCH] fixing method signature of serialize() --- tests/phpunit/includes/ContentHandlerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/phpunit/includes/ContentHandlerTest.php b/tests/phpunit/includes/ContentHandlerTest.php index 2a1c49c505..1ea783fe16 100644 --- a/tests/phpunit/includes/ContentHandlerTest.php +++ b/tests/phpunit/includes/ContentHandlerTest.php @@ -220,7 +220,7 @@ class DummyContentForTesting extends Content { $this->data = $data; } - public function serialize() { + public function serialize( $format = null ) { return serialize( $this->data ); } -- 2.20.1