| 1 | <?php |
||
| 9 | class UserProfile implements UserProfileInterface |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var string |
||
| 13 | */ |
||
| 14 | protected $identifier; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @var string |
||
| 18 | */ |
||
| 19 | protected $email; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @var string |
||
| 23 | */ |
||
| 24 | protected $displayName; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @var string |
||
| 28 | */ |
||
| 29 | protected $firstName; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @var string |
||
| 33 | */ |
||
| 34 | protected $lastName; |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @var bool |
||
| 38 | */ |
||
| 39 | protected $emailVerified = false; |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @return string |
||
| 43 | */ |
||
| 44 | 7 | public function getIdentifier() |
|
| 48 | |||
| 49 | /** |
||
| 50 | * @param string $identifier |
||
| 51 | */ |
||
| 52 | 13 | public function setIdentifier($identifier) |
|
| 56 | |||
| 57 | /** |
||
| 58 | * @return string |
||
| 59 | */ |
||
| 60 | 6 | public function getEmail() |
|
| 64 | |||
| 65 | /** |
||
| 66 | * @param string $email |
||
| 67 | */ |
||
| 68 | 13 | public function setEmail($email) |
|
| 72 | |||
| 73 | /** |
||
| 74 | * @return string |
||
| 75 | */ |
||
| 76 | 1 | public function getDisplayName() |
|
| 80 | |||
| 81 | /** |
||
| 82 | * @param string $displayName |
||
| 83 | */ |
||
| 84 | 13 | public function setDisplayName($displayName) |
|
| 88 | |||
| 89 | /** |
||
| 90 | * @return string |
||
| 91 | */ |
||
| 92 | 1 | public function getFirstName() |
|
| 96 | |||
| 97 | /** |
||
| 98 | * @param string $firstName |
||
| 99 | */ |
||
| 100 | 13 | public function setFirstName($firstName) |
|
| 104 | |||
| 105 | /** |
||
| 106 | * @return string |
||
| 107 | */ |
||
| 108 | 1 | public function getLastName() |
|
| 112 | |||
| 113 | /** |
||
| 114 | * @param string $lastName |
||
| 115 | */ |
||
| 116 | 13 | public function setLastName($lastName) |
|
| 120 | |||
| 121 | /** |
||
| 122 | * @return bool |
||
| 123 | */ |
||
| 124 | 5 | public function isEmailVerified() |
|
| 128 | |||
| 129 | /** |
||
| 130 | * @param bool $verified |
||
| 131 | */ |
||
| 132 | 13 | public function setEmailVerified($verified) |
|
| 136 | } |
||
| 137 |