MollieCustomer::getEmail()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
3
/*
4
 * This file has been created by developers from BitBag.
5
 * Feel free to contact us once you face any issues or want to start
6
 * You can find more information about us on https://bitbag.io and write us
7
 * an email on [email protected].
8
 */
9
10
declare(strict_types=1);
11
12
namespace BitBag\SyliusMolliePlugin\Entity;
13
14
use Sylius\Component\Resource\Model\ResourceInterface;
15
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
28
    {
29
        return $this->id;
30
    }
31
32
    public function getProfileId(): ?string
33
    {
34
        return $this->profileId;
35
    }
36
37
    public function setProfileId(string $profileId): void
38
    {
39
        $this->profileId = $profileId;
40
    }
41
42
    public function getEmail(): string
43
    {
44
        return $this->email;
45
    }
46
47
    public function setEmail(string $email): void
48
    {
49
        $this->email = $email;
50
    }
51
}
52