1 | <?php |
||
11 | class GuzzleService implements Service |
||
12 | { |
||
13 | /** |
||
14 | * @var ClientInterface |
||
15 | */ |
||
16 | private $httpClient; |
||
17 | |||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | private $serviceEndpoint; |
||
22 | |||
23 | public function __construct(ClientInterface $httpClient, $serviceEndpoint) |
||
28 | |||
29 | public function verifyIpnMessage(Message $message) : ServiceResponse |
||
49 | } |
||
50 |