From: daniel Date: Mon, 30 Apr 2012 15:52:13 +0000 (+0200) Subject: fixing method signature of serialize() X-Git-Tag: 1.31.0-rc.0~22097^2^2~180 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/password.php?a=commitdiff_plain;h=c2b8593d02ec6e1ef25f21c2005f32ef25426522;p=lhc%2Fweb%2Fwiklou.git fixing method signature of serialize() --- 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 ); }