1 <?php
 2 /**
 3  * @author Krzysztof Gzocha <krzysztof.gzocha@xsolve.pl>
 4  */
 5 namespace Team3\PayU\Communication\Notification;
 6 
 7 use Team3\PayU\Serializer\SerializableInterface;
 8 
 9 /**
10  * This class represents every notification that PayU can send to application.
11  *
12  * Interface NotificationInterface
13  * @package Team3\PayU\Communication\Notification
14  */
15 interface NotificationInterface extends SerializableInterface
16 {
17 }
18