Completed
Push — master ( 326999...39a0bd )
by Fabian
02:17
created

OpenPositionsRequest::getMethod()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 3
Ratio 100 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 3
loc 3
ccs 2
cts 2
cp 1
crap 1
rs 10
c 1
b 0
f 0
1
<?php
2
3
namespace HanischIt\KrakenApi\Model\OpenPositions;
4
5
use HanischIt\KrakenApi\Enum\VisibilityEnum;
6
use HanischIt\KrakenApi\Model\RequestInterface;
7
8
/**
9
 * Class OpenPositionsRequest
10
 * @package HanischIt\KrakenApi\Model\OpenPositions
11
 */
12 View Code Duplication
class OpenPositionsRequest implements RequestInterface
0 ignored issues
show
Duplication introduced by
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
13
{
14
15
    /**
16
     * @var string
17
     */
18
    private $txid;
19
    /**
20
     * @var bool
21
     */
22
    private $docalcs = false;
23
24
    /**
25
     * OpenPositionsRequest constructor.
26
     * @param string $txid
27
     * @param bool $docalcs
28
     */
29 2
    public function __construct($txid, $docalcs)
30
    {
31 2
        $this->txid = $txid;
32 2
        $this->docalcs = $docalcs;
33 2
    }
34
35
36
    /**
37
     * Returns the api request name
38
     *
39
     * @return string
40
     */
41 1
    public function getMethod()
42
    {
43 1
        return 'OpenPositions';
44
    }
45
46
    /**
47
     * @return string
48
     */
49 1
    public function getVisibility()
50
    {
51 1
        return VisibilityEnum::VISIBILITY_PRIVATE;
52
    }
53
54
    /**
55
     * @return array
56
     */
57 1
    public function getRequestData()
58
    {
59 1
        $ret = [];
60 1
        $ret["txid"] = $this->txid;
61 1
        $ret["docalcs"] = $this->docalcs;
62 1
        return $ret;
63
    }
64
65
    /**
66
     * @return string
67
     */
68 1
    public function getResponseClassName()
69
    {
70 1
        return OpenPositionsResponse::class;
71
    }
72
}
73