1 <?php
2 /**
3 * @author Krzysztof Gzocha <krzysztof.gzocha@xsolve.pl>
4 */
5 namespace Team3\PayU\Serializer;
6
7 /**
8 * All classes that are serializable to JSON should implement this interface.
9 *
10 * Interface SerializableInterface
11 * @package Team3\PayU\Serializer
12 */
13 interface SerializableInterface
14 {
15 }
16