-
Notifications
You must be signed in to change notification settings - Fork 0
/
DataType.php
139 lines (116 loc) · 2.38 KB
/
DataType.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<?php
namespace Vayes\Tier;
class DataType
{
/** @var string */
private $id;
/** @var string */
private $name;
/** @var string */
private $slug;
/** @var string */
private $var_type;
/** @var string */
private $forge;
/** @var string|null */
private $config;
/** @var bool */
private $active = true;
public function __construct($autoAssignUuid = false)
{
if (true === $autoAssignUuid) {
$this->setId(uuid_create(UUID_VARIANT_DCE));
}
}
public function getId(): ?string
{
return $this->id;
}
/**
* @param string $id
* @return $this
*/
public function setId(string $id): self
{
$this->id = $id;
return $this;
}
public function getName(): ?string
{
return $this->name;
}
/**
* @param string $name
* @return $this
*/
public function setName(string $name): self
{
$this->name = $name;
return $this;
}
public function getSlug(): ?string
{
return $this->slug;
}
/**
* @param string $slug
* @return $this
*/
public function setSlug(string $slug): self
{
$this->slug = $slug;
return $this;
}
public function getVarType(): ?string
{
return $this->var_type;
}
/**
* @param string $var_type
* @return $this
*/
public function setVarType(string $var_type): self
{
$this->var_type = $var_type;
return $this;
}
public function getForge(): ?array
{
return json_decode($this->forge, true);
}
/**
* @param array $forge
* @return $this
*/
public function setForge(array $forge): self
{
$this->forge = json_encode($forge);
return $this;
}
public function getConfig(): ?string
{
return json_decode($this->config, true);
}
/**
* @param array|null $config
* @return $this
*/
public function setConfig(?array $config): self
{
$this->config = json_encode($config);
return $this;
}
public function isActive(): bool
{
return $this->active;
}
/**
* @param bool $active
* @return $this
*/
public function setActive(bool $active): self
{
$this->active = $active;
return $this;
}
}