GeoIP2-php/compat/JsonSerializable.php

14 lines
239 B
PHP
Raw Normal View History

2013-10-26 21:22:30 +00:00
<?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();
}