wiki.techinc.nl/tests/phpunit/mocks/content/DummyContentHandlerForTesting.php
Umherirrender 130ec2523d Fix PhanTypeMismatchDeclaredParam
Auto fix MediaWiki.Commenting.FunctionComment.DefaultNullTypeParam sniff

Change-Id: I865323fd0295aabd06f3e3c75e0e5043fb31069e
2018-07-07 00:34:30 +00:00

42 lines
958 B
PHP

<?php
class DummyContentHandlerForTesting extends ContentHandler {
public function __construct( $dataModel, $formats = [ DummyContentForTesting::MODEL_ID ] ) {
parent::__construct( $dataModel, $formats );
}
/**
* @see ContentHandler::serializeContent
*
* @param Content $content
* @param string|null $format
*
* @return string
*/
public function serializeContent( Content $content, $format = null ) {
return $content->serialize();
}
/**
* @see ContentHandler::unserializeContent
*
* @param string $blob
* @param string|null $format Unused.
*
* @return Content
*/
public function unserializeContent( $blob, $format = null ) {
$d = unserialize( $blob );
return new DummyContentForTesting( $d );
}
/**
* Creates an empty Content object of the type supported by this ContentHandler.
* @return DummyContentForTesting
*/
public function makeEmptyContent() {
return new DummyContentForTesting( '' );
}
}