forked from jeroendesloovere/vcard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVersion.php
78 lines (62 loc) · 1.85 KB
/
Version.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?php
declare(strict_types=1);
namespace JeroenDesloovere\VCard\Property\Parameter;
use JeroenDesloovere\VCard\Exception\PropertyParameterException;
use JeroenDesloovere\VCard\Formatter\Property\NodeFormatterInterface;
use JeroenDesloovere\VCard\Formatter\Property\Parameter\VersionFormatter;
use JeroenDesloovere\VCard\Parser\Property\NodeParserInterface;
use JeroenDesloovere\VCard\Parser\Property\Parameter\VersionParser;
use JeroenDesloovere\VCard\Property\SimpleNodeInterface;
final class Version implements PropertyParameterInterface, SimpleNodeInterface
{
protected const VERSION_3 = '3.0';
protected const VERSION_4 = '4.0';
public const POSSIBLE_VALUES = [
self::VERSION_3,
self::VERSION_4,
];
private $value;
/**
* @param string $value
* @throws PropertyParameterException
*/
public function __construct(string $value)
{
if (!in_array($value, self::POSSIBLE_VALUES, true)) {
throw PropertyParameterException::forWrongValue($value, self::POSSIBLE_VALUES);
}
$this->value = $value;
}
public function __toString(): string
{
return $this->value;
}
public function getFormatter(): NodeFormatterInterface
{
return new VersionFormatter($this);
}
public static function getNode(): string
{
return 'VERSION';
}
public static function getParser(): NodeParserInterface
{
return new VersionParser();
}
public static function version3(): self
{
return new self(self::VERSION_3);
}
public function isVersion3(): bool
{
return $this->value === self::VERSION_3;
}
public static function version4(): self
{
return new self(self::VERSION_4);
}
public function isVersion4(): bool
{
return $this->value === self::VERSION_4;
}
}