-
Notifications
You must be signed in to change notification settings - Fork 0
/
ValidationRule.php
139 lines (116 loc) · 2.4 KB
/
ValidationRule.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 ValidationRule
{
/** @var string */
private $id;
/** @var string */
private $name;
/** @var string */
private $class;
/** @var string|null */
private $message;
/** @var string|null */
private $usage;
/** @var bool */
private $argument_1 = false;
/** @var bool */
private $argument_2 = false;
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 getClass(): ?string
{
return $this->class;
}
/**
* @param string $class
* @return $this
*/
public function setClass(string $class): self
{
$this->class = $class;
return $this;
}
public function getMessage(): ?string
{
return $this->message;
}
/**
* @param string|null $message
* @return $this
*/
public function setMessage(?string $message): self
{
$this->message = $message;
return $this;
}
public function getUsage(): ?string
{
return $this->usage;
}
/**
* @param string|null $usage
* @return $this
*/
public function setUsage(?string $usage): self
{
$this->usage = $usage;
return $this;
}
public function getArgument1(): ?bool
{
return $this->argument_1;
}
/**
* @param bool $argument_1
* @return $this
*/
public function setArgument1(bool $argument_1): self
{
$this->argument_1 = $argument_1;
return $this;
}
public function getArgument2(): ?bool
{
return $this->argument_2;
}
/**
* @param bool $argument_2
* @return $this
*/
public function setArgument2(bool $argument_2): self
{
$this->argument_2 = $argument_2;
return $this;
}
}