DocumentDescription::setOwnerInn()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 6

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 6
ccs 0
cts 3
cp 0
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
crap 2
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Lamoda\IsmpClient\V4\Dto\FacadeDocBodyResponse\Body;
6
7
class DocumentDescription
8
{
9
    /**
10
     * @var string|null
11
     */
12
    private $participantInn;
13
    /**
14
     * @var string|null
15
     */
16
    private $markingType;
17
    /**
18
     * @var string|null
19
     */
20
    private $productionDate;
21
    /**
22
     * @var string|null
23
     */
24
    private $productionType;
25
    /**
26
     * @var string|null
27
     */
28
    private $producerInn;
29
    /**
30
     * @var string|null
31
     */
32
    private $ownerInn;
33
34
    public function getParticipantInn(): ?string
35
    {
36
        return $this->participantInn;
37
    }
38
39
    public function setParticipantInn(?string $participantInn): self
40
    {
41
        $this->participantInn = $participantInn;
42
43
        return $this;
44
    }
45
46
    public function getMarkingType(): ?string
47
    {
48
        return $this->markingType;
49
    }
50
51
    public function setMarkingType(?string $markingType): self
52
    {
53
        $this->markingType = $markingType;
54
55
        return $this;
56
    }
57
58
    public function getProductionDate(): ?string
59
    {
60
        return $this->productionDate;
61
    }
62
63
    public function setProductionDate(?string $productionDate): self
64
    {
65
        $this->productionDate = $productionDate;
66
67
        return $this;
68
    }
69
70
    public function getProductionType(): ?string
71
    {
72
        return $this->productionType;
73
    }
74
75
    public function setProductionType(?string $productionType): self
76
    {
77
        $this->productionType = $productionType;
78
79
        return $this;
80
    }
81
82
    public function getProducerInn(): ?string
83
    {
84
        return $this->producerInn;
85
    }
86
87
    public function setProducerInn(?string $producerInn): self
88
    {
89
        $this->producerInn = $producerInn;
90
91
        return $this;
92
    }
93
94
    public function getOwnerInn(): ?string
95
    {
96
        return $this->ownerInn;
97
    }
98
99
    public function setOwnerInn(?string $ownerInn): self
100
    {
101
        $this->ownerInn = $ownerInn;
102
103
        return $this;
104
    }
105
}
106