ResponseInterface.php
639 字节
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?php
namespace Lackoxygen\TopWarehouse\Contracts;
interface ResponseInterface
{
/**
* get http code
*
* @return int
*/
public function getStatusCode(): int;
/**
* api business success
*
* @return bool
*/
public function isSuccess(): bool;
/**
* get response text
*
* @return string
*/
public function getContents(): string;
/**
* response text to array
*
* @return array
*/
public function toArray(): array;
/**
* response text to json
*
* @return string
*/
public function __toString();
}