MailChimpWebhookDataMergeFieldsRequest::getLNAME()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 3
rs 10
1
<?php
2
3
declare(strict_types=1);
4
5
namespace AlexCk\MailchimpBundle\Model\MailChimp;
6
7
class MailChimpWebhookDataMergeFieldsRequest
8
{
9
    /**
10
     * @var string
11
     */
12
    private $FNAME;
13
14
    /**
15
     * @var string
16
     */
17
    private $LNAME;
18
19
    public function getFNAME(): string
20
    {
21
        return $this->FNAME;
22
    }
23
24
    /**
25
     * @param string $FNAME
26
     * @return MailChimpWebhookDataMergeFieldsRequest
27
     */
28
    public function setFNAME(string $fName): MailChimpWebhookDataMergeFieldsRequest
29
    {
30
        $this->FNAME = $fName;
31
        return $this;
32
    }
33
34
    public function getLNAME(): string
35
    {
36
        return $this->LNAME;
37
    }
38
39
    public function setLNAME(string $lName): MailChimpWebhookDataMergeFieldsRequest
40
    {
41
        $this->LNAME = $lName;
42
        return $this;
43
    }
44
}
45
46