forked from lyft/mongodb-odm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUser.php
93 lines (72 loc) · 1.73 KB
/
User.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
<?php
namespace Documents;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\ODM\MongoDB\Mapping\Annotations as ODM;
/** @ODM\Document(collection="users") */
class User
{
/** @ODM\Id */
protected $id;
/** @ODM\Field(type="string") */
private $username;
/** @ODM\Field(type="string") */
protected $password;
/** @ODM\EmbedOne(targetDocument="Address") */
protected $address;
/** @ODM\ReferenceOne(targetDocument="Account") */
protected $account;
/** @ODM\EmbedMany(targetDocument="Phonenumber") */
protected $phonenumbers;
public function __construct()
{
$this->phonenumbers = new ArrayCollection();
}
public function getId()
{
return $this->id;
}
public function setUsername($username)
{
$this->username = $username;
}
public function getUsername()
{
return $this->username;
}
public function setPassword($password)
{
$this->password = md5($password);
}
public function checkPassword($password)
{
return $this->password === md5($password);
}
public function setAddress(Address $address)
{
$this->address = $address;
}
public function getAddress()
{
return $this->address;
}
public function setAccount(Account $account)
{
$this->account = $account;
}
public function getAccount()
{
return $this->account;
}
public function addPhonenumber(Phonenumber $phonenumber)
{
$this->phonenumbers[] = $phonenumber;
}
public function getPhonenumbers()
{
return $this->phonenumbers;
}
public function __toString()
{
return $this->username;
}
}