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