1: <?php 2: 3: /** 4: * This interface exists to provide backwards compatibility with PHP 5.3 5: */ 6: interface JsonSerializable 7: { 8: /** 9: * Returns data that can be serialized by json_encode 10: * 11: */ 12: public function jsonSerialize(); 13: } 14: