GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

Condition   A
last analyzed

Complexity

Total Complexity 6

Size/Duplication

Total Lines 63
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 1
Metric Value
eloc 10
c 1
b 0
f 1
dl 0
loc 63
ccs 14
cts 14
cp 1
rs 10
wmc 6

6 Methods

Rating   Name   Duplication   Size   Complexity  
A getComment() 0 3 1
A isValue() 0 3 1
A setComment() 0 3 1
A setValue() 0 3 1
A setName() 0 3 1
A getName() 0 3 1
1
<?php
2
3
namespace Coinpaprika\Model\Ico;
4
5
/**
6
 * Class Condition
7
 *
8
 * @package \Coinpaprika\Model\Ico
9
 *
10
 * @author Krzysztof Przybyszewski <[email protected]>
11
 */
12
class Condition
13
{
14
    /**
15
     * @var string
16
     */
17
    private $name;
18
19
    /**
20
     * @var bool
21
     */
22
    private $value;
23
24
    /**
25
     * @var string
26
     */
27
    private $comment;
28
29
    /**
30
     * @return string
31
     */
32 1
    public function getName(): string
33
    {
34 1
        return $this->name;
35
    }
36
37
    /**
38
     * @param string $name
39
     */
40 1
    public function setName(string $name): void
41
    {
42 1
        $this->name = $name;
43 1
    }
44
45
    /**
46
     * @return bool
47
     */
48 1
    public function isValue(): bool
49
    {
50 1
        return $this->value;
51
    }
52
53
    /**
54
     * @param bool $value
55
     */
56 1
    public function setValue(bool $value): void
57
    {
58 1
        $this->value = $value;
59 1
    }
60
61
    /**
62
     * @return string
63
     */
64 1
    public function getComment(): string
65
    {
66 1
        return $this->comment;
67
    }
68
69
    /**
70
     * @param string $comment
71
     */
72 1
    public function setComment(string $comment): void
73
    {
74 1
        $this->comment = $comment;
75 1
    }
76
}
77