Test Failed
Push — master ( e46311...6bec89 )
by Hannes
02:05
created

ErrorOutcome   A

Complexity

Total Complexity 5

Size/Duplication

Total Lines 28
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 7
dl 0
loc 28
rs 10
c 0
b 0
f 0
wmc 5

5 Methods

Rating   Name   Duplication   Size   Complexity  
A getDescription() 0 3 1
A mustBeHandled() 0 3 1
A getType() 0 3 1
A getContent() 0 3 1
A __construct() 0 3 1
1
<?php
2
3
declare(strict_types = 1);
4
5
namespace hanneskod\readmetester\Runner;
6
7
final class ErrorOutcome implements OutcomeInterface
8
{
9
    /** @var string */
10
    private $message;
11
12
    public function __construct(string $message)
13
    {
14
        $this->message = $message;
15
    }
16
17
    public function getType(): string
18
    {
19
        return self::TYPE_ERROR;
20
    }
21
22
    public function mustBeHandled(): bool
23
    {
24
        return true;
25
    }
26
27
    public function getContent(): string
28
    {
29
        return $this->message;
30
    }
31
32
    public function getDescription(): string
33
    {
34
        return $this->message;
35
    }
36
}
37