1 <?php
2 /**
3 * @author Krzysztof Gzocha <krzysztof.gzocha@xsolve.pl>
4 */
5 namespace Team3\PayU\Communication\Response;
6
7 use Team3\PayU\Communication\Request\PayURequestInterface;
8
9 /**
10 * Represents any response from PayU.
11 * It is used with {@link RequestProcessInterface}
12 *
13 * Interface ResponseInterface
14 * @package Team3\PayU\Communication\Response
15 */
16 interface ResponseInterface
17 {
18 /**
19 * @param PayURequestInterface $payURequest
20 *
21 * @return bool
22 */
23 public function supports(PayURequestInterface $payURequest);
24 }
25