D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
test
/
app
/
Libs
/
Sdk
/
Communication
/
Filename :
ConnectionResponseInterface.php
back
Copy
<?php namespace App\Libs\Sdk\Communication; /** * Interface ConnectionResponseInterface * * @package OnlinePayments\Sdk\Communication */ interface ConnectionResponseInterface { /** * @return int */ public function getHttpStatusCode(): int; /** * @return array */ public function getHeaders(): array; /** * @param string $name * @return mixed */ public function getHeaderValue(string $name); /** * @return string */ public function getBody(): string; }