AbstractUser.php
2 months ago
Admin.php
1 year ago
AppleCalendarEmployeeConnect.php
1 year ago
Customer.php
8 months ago
Manager.php
1 year ago
Provider.php
3 months ago
AppleCalendarEmployeeConnect.php
55 lines
| 1 | <?php |
| 2 | |
| 3 | namespace AmeliaBooking\Domain\Entity\User; |
| 4 | |
| 5 | use AmeliaBooking\Domain\ValueObjects\String\Name; |
| 6 | |
| 7 | class AppleCalendarEmployeeConnect |
| 8 | { |
| 9 | /** @var Name */ |
| 10 | private $iCloudId; |
| 11 | |
| 12 | /** @var Name */ |
| 13 | private $appSpecificPassword; |
| 14 | |
| 15 | /** |
| 16 | * @return Name |
| 17 | */ |
| 18 | public function getICloudId() |
| 19 | { |
| 20 | return $this->iCloudId; |
| 21 | } |
| 22 | |
| 23 | /** |
| 24 | * @param Name $iCloudId |
| 25 | */ |
| 26 | public function setICloudId($iCloudId) |
| 27 | { |
| 28 | $this->iCloudId = $iCloudId; |
| 29 | } |
| 30 | |
| 31 | /** |
| 32 | * @return Name |
| 33 | */ |
| 34 | public function getAppSpecificPassword() |
| 35 | { |
| 36 | return $this->appSpecificPassword; |
| 37 | } |
| 38 | |
| 39 | /** |
| 40 | * @param Name $appSpecificPassword |
| 41 | */ |
| 42 | public function setAppSpecificPassword($appSpecificPassword) |
| 43 | { |
| 44 | $this->appSpecificPassword = $appSpecificPassword; |
| 45 | } |
| 46 | |
| 47 | public function toArray() |
| 48 | { |
| 49 | return [ |
| 50 | 'iCloudId' => $this->getICloudId() ? $this->getICloudId()->getValue() : null, |
| 51 | 'appSpecificPassword' => $this->getAppSpecificPassword() ? $this->getAppSpecificPassword()->getValue() : null, |
| 52 | ]; |
| 53 | } |
| 54 | } |
| 55 |