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

NotEmptyString::__construct()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 2
eloc 3
nc 2
nop 1
dl 0
loc 6
rs 9.4285
c 0
b 0
f 0
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