Total Complexity | 2 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
5 | class Transfers |
||
6 | { |
||
7 | const ENDPOINT = 'transfer'; |
||
8 | |||
9 | /** |
||
10 | * @var Client |
||
11 | */ |
||
12 | private $client; |
||
13 | |||
14 | /** |
||
15 | * Transfers constructor. |
||
16 | * @param Client $client |
||
17 | */ |
||
18 | public function __construct(Client $client) |
||
19 | { |
||
20 | $this->client = $client; |
||
21 | } |
||
22 | |||
23 | /** |
||
24 | * @see https://revolutdev.github.io/business-api/#transfer |
||
25 | * |
||
26 | * @param array $json |
||
27 | * @return mixed |
||
28 | * @throws \GuzzleHttp\Exception\GuzzleException |
||
29 | */ |
||
30 | public function create(array $json) |
||
33 | } |
||
34 | } |
||
35 |