GeoIP2-php/compat/JsonSerializable.php
2013-10-26 14:22:30 -07:00

14 lines
239 B
PHP

<?php
/**
* This interface exists to provide backwards compatibility with PHP 5.3
*/
interface JsonSerializable
{
/**
* Returns data that can be serialized by json_encode
*
*/
public function jsonSerialize();
}