Completed
Pull Request — master (#1)
by steven
06:15 queued 02:56
created

NotEmptyString   A

Complexity

Total Complexity 5

Size/Duplication

Total Lines 41
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 41
rs 10
c 0
b 0
f 0
wmc 5

4 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 6 2
A equals() 0 3 1
A __toString() 0 3 1
A toNative() 0 3 1
1
<?php
2
3
namespace VSV\GVQ_API\Question;
4
5
class NotEmptyString
6
{
7
    /**
8
     * @var string
9
     */
10
    private $text;
11
12
    /**
13
     * @param string $text
14
     */
15
    public function __construct(string $text)
16
    {
17
        if ($text === '') {
18
            throw new \InvalidArgumentException('Text argument cannot be empty.');
19
        }
20
        $this->text = $text;
21
    }
22
23
    /**
24
     * @return string
25
     */
26
    public function toNative(): string
27
    {
28
        return $this->text;
29
    }
30
31
    /**
32
     * @return string
33
     */
34
    public function __toString(): string
35
    {
36
        return $this->toNative();
37
    }
38
39
    /**
40
     * @param NotEmptyString $notEmptyString
41
     * @return bool
42
     */
43
    public function equals(NotEmptyString $notEmptyString): bool
44
    {
45
        return $this->toNative() === $notEmptyString->toNative();
46
    }
47
}
48