MediaWiki master
JsonSerializer.php
Go to the documentation of this file.
1<?php
8namespace MediaWiki\Json;
9
10use JsonException;
11
20interface JsonSerializer {
21
31 public function serialize( $value );
32
33 // TODO: move more methods from FormatJson to here.
34}
serialize( $value)
Encode $value as JSON with an intent to use JsonDeserializer::unserialize to decode it back.