| Total Complexity | 5 |
| Total Lines | 34 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | class MollieCustomer implements ResourceInterface, MollieCustomerInterface |
||
| 18 | { |
||
| 19 | /** @var int */ |
||
| 20 | private $id; |
||
| 21 | |||
| 22 | /** @var string */ |
||
| 23 | private $profileId; |
||
| 24 | |||
| 25 | /** @var string */ |
||
| 26 | private $email; |
||
| 27 | |||
| 28 | public function getId(): int |
||
| 31 | } |
||
| 32 | |||
| 33 | public function getProfileId(): ?string |
||
| 34 | { |
||
| 35 | return $this->profileId; |
||
| 36 | } |
||
| 37 | |||
| 38 | public function setProfileId(string $profileId): void |
||
| 41 | } |
||
| 42 | |||
| 43 | public function getEmail(): string |
||
| 44 | { |
||
| 45 | return $this->email; |
||
| 46 | } |
||
| 47 | |||
| 48 | public function setEmail(string $email): void |
||
| 51 | } |
||
| 52 | } |
||
| 53 |