WrapperTaskMonitoring   A
last analyzed

Complexity

Total Complexity 4

Size/Duplication

Total Lines 51
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 2
Bugs 0 Features 0
Metric Value
eloc 11
c 2
b 0
f 0
dl 0
loc 51
ccs 0
cts 12
cp 0
rs 10
wmc 4

4 Methods

Rating   Name   Duplication   Size   Complexity  
A withValues() 0 6 1
A getMessage() 0 3 1
A withMessage() 0 6 1
A getValues() 0 3 1
1
<?php
2
3
namespace Spinen\Ncentral\Type;
4
5
class WrapperTaskMonitoring
6
{
7
8
    /**
9
     * @var string
10
     */
11
    private $message;
12
13
    /**
14
     * @var \Spinen\Ncentral\Type\TEITaskFailed
15
     */
16
    private $values;
17
18
    /**
19
     * @return string
20
     */
21
    public function getMessage()
22
    {
23
        return $this->message;
24
    }
25
26
    /**
27
     * @param string $message
28
     * @return WrapperTaskMonitoring
29
     */
30
    public function withMessage($message)
31
    {
32
        $new = clone $this;
33
        $new->message = $message;
34
35
        return $new;
36
    }
37
38
    /**
39
     * @return \Spinen\Ncentral\Type\TEITaskFailed
40
     */
41
    public function getValues()
42
    {
43
        return $this->values;
44
    }
45
46
    /**
47
     * @param \Spinen\Ncentral\Type\TEITaskFailed $values
48
     * @return WrapperTaskMonitoring
49
     */
50
    public function withValues($values)
51
    {
52
        $new = clone $this;
53
        $new->values = $values;
54
55
        return $new;
56
    }
57
58
59
}
60
61