Payments::create()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 1
dl 0
loc 3
rs 10
1
<?php
2
3
namespace RevolutPHP;
4
5
class Payments
6
{
7
    const ENDPOINT = 'pay';
8
9
    /**
10
     * @var Client
11
     */
12
    private $client;
13
14
    /**
15
     * Payments 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/#create-payment
25
     * @see https://revolutdev.github.io/business-api/#schedule-payment
26
     *
27
     * @param array $json
28
     * @return mixed
29
     * @throws \GuzzleHttp\Exception\GuzzleException
30
     */
31
    public function create(array $json)
32
    {
33
        return $this->client->post(self::ENDPOINT, $json);
34
    }
35
}
36