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

OpenPositionsRequest   A

Complexity

Total Complexity 5

Size/Duplication

Total Lines 59
Duplicated Lines 100 %

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
dl 59
loc 59
ccs 15
cts 15
cp 1
rs 10
c 1
b 0
f 0
wmc 5

5 Methods

Rating   Name   Duplication   Size   Complexity  
A getResponseClassName() 3 3 1
A getMethod() 3 3 1
A getVisibility() 3 3 1
A __construct() 4 4 1
A getRequestData() 6 6 1

How to fix   Duplicated Code   

Duplicated Code

Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.

Common duplication problems, and corresponding solutions are:

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