| 1 | <?php |
||
| 5 | abstract class AbstractDataType implements DataTypeInterface |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * (PHP 5 >= 5.4.0)<br/> |
||
| 9 | * Specify data which should be serialized to JSON |
||
| 10 | * |
||
| 11 | * @link http://php.net/manual/en/jsonserializable.jsonserialize.php |
||
| 12 | * @return mixed data which can be serialized by <b>json_encode</b>, |
||
| 13 | * which is a value of any type other than a resource. |
||
| 14 | */ |
||
| 15 | public function jsonSerialize() |
||
| 23 | |||
| 24 | public function supports($method) |
||
| 28 | } |
||
| 29 |