Completed
Push — master ( 71abfe...238f74 )
by Pablo
05:15
created

PhpMd::setOptions()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 8
Code Lines 5

Duplication

Lines 8
Ratio 100 %

Code Coverage

Tests 5
CRAP Score 1

Importance

Changes 0
Metric Value
dl 8
loc 8
rs 9.4285
c 0
b 0
f 0
ccs 5
cts 5
cp 1
cc 1
eloc 5
nc 1
nop 1
crap 1
1
<?php
2
3
namespace PhpGitHooks\Module\Configuration\Domain;
4
5
use PhpGitHooks\Module\Configuration\Model\ToolInterface;
6
7 View Code Duplication
class PhpMd implements ToolInterface
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...
8
{
9
    /**
10
     * @var Undefined
11
     */
12
    private $undefined;
13
    /**
14
     * @var Enabled
15
     */
16
    private $enabled;
17
    /**
18
     * @var PhpMdOptions
19
     */
20
    private $options;
21
22
    /**
23
     * PhpMd constructor.
24
     *
25
     * @param Undefined    $undefined
26
     * @param Enabled      $enabled
27
     * @param PhpMdOptions $options
28
     */
29 6
    public function __construct(Undefined $undefined, Enabled $enabled, PhpMdOptions $options)
30
    {
31 6
        $this->undefined = $undefined;
32 6
        $this->enabled = $enabled;
33 6
        $this->options = $options;
34 6
    }
35
36
    /**
37
     * @return bool
38
     */
39 3
    public function isEnabled()
40
    {
41 3
        return $this->enabled->value();
42
    }
43
44
    /**
45
     * @return bool
46
     */
47 2
    public function isUndefined()
48
    {
49 2
        return $this->undefined->value();
50
    }
51
52
    /**
53
     * @param Enabled $enabled
54
     *
55
     * @return PhpMd
56
     */
57 2
    public function setEnabled(Enabled $enabled)
58
    {
59 2
        return new self(
60 2
            new Undefined(false),
61
            $enabled,
62 2
            $this->options
63
        );
64
    }
65
66
    /**
67
     * @return PhpMdOptions
68
     */
69 3
    public function getOptions()
70
    {
71 3
        return $this->options;
72
    }
73
74
    /**
75
     * @param PhpMdOptions $options
76
     *
77
     * @return PhpMd
78
     */
79 1
    public function setOptions(PhpMdOptions $options)
80
    {
81 1
        return new self(
82 1
            $this->undefined,
83 1
            $this->enabled,
84 1
            $options
85
        );
86
    }
87
}
88