-
Notifications
You must be signed in to change notification settings - Fork 0
/
UserModelWrapper.php
72 lines (58 loc) · 1.15 KB
/
UserModelWrapper.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
<?php
namespace Neoan3\Model\User;
use Neoan3\Provider\Model\ModelWrapper;
use Neoan3\Provider\Model\ModelWrapperTrait;
class UserModelWrapper extends UserModel implements ModelWrapper
{
use ModelWrapperTrait;
private ?string $id;
private ?string $insert_date;
private ?string $delete_date = null;
private string $email;
private string $password;
public function getId(): mixed
{
return $this->id;
}
public function setId($input): static
{
$this->id = $input;
return $this;
}
public function getInsertDate(): mixed
{
return $this->insert_date;
}
public function setInsertDate($input): static
{
$this->insert_date = $input;
return $this;
}
public function getDeleteDate(): mixed
{
return $this->delete_date;
}
public function setDeleteDate($input): static
{
$this->delete_date = $input;
return $this;
}
public function getEmail(): mixed
{
return $this->email;
}
public function setEmail($input): static
{
$this->email = $input;
return $this;
}
public function getPassword(): mixed
{
return $this->password;
}
public function setPassword($input): static
{
$this->password = $input;
return $this;
}
}