Completed
Pull Request — master (#5)
by
unknown
11:08
created

DivideIQClient::setRequestTimeout()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 1
dl 0
loc 4
ccs 0
cts 4
cp 0
crap 2
rs 10
c 0
b 0
f 0
1
<?php
2
3
4
namespace Stockbase\Integration\StockbaseApi\Client\DivideIQ;
5
6
use DivideBV\PHPDivideIQ\DivideIQ;
7
8
/**
9
 * DivideIQ API client with extended functionality.
10
 */
11
class DivideIQClient extends DivideIQ
12
{
13
    /**
14
     * {@inheritdoc}
15
     */
16
    public function __construct($username, $password, $environment = 'production', array $clientOptions = [])
17
    {
18
        parent::__construct($username, $password, $environment, $clientOptions);
19
    }
20
}
21