BetfairGuzzleClient::apiNgRequest()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 8

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 8
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
1
<?php
2
3
namespace Betfair\Client;
4
5
class BetfairGuzzleClient
6
{
7
8
    private $guzzleClient;
9
10
    public function __construct($guzzleClient)
11
    {
12
        $this->guzzleClient = $guzzleClient;
13
    }
14
15
    public function apiNgRequest(array $guzzleParameters)
16
    {
17
        $response = $this->guzzleClient->apiNgRequest(
18
            $guzzleParameters
19
        );
20
21
        return $response;
22
    }
23
24
    public function betfairLogin(array $guzzleParameters)
25
    {
26
        $response = $this->guzzleClient->betfairLogin(
27
            $guzzleParameters
28
        );
29
30
        return $response;
31
    }
32
}
33