Passed
Push — master ( 90a5eb...23c09d )
by
unknown
47s queued 11s
created

getProductionOrderId()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 4
Ratio 100 %

Importance

Changes 0
Metric Value
dl 4
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Lamoda\OmsClient\V2\Dto;
6
7 View Code Duplication
final class CreateOrderForEmissionICRequestLp extends CreateOrderForEmissionICRequest
0 ignored issues
show
Duplication introduced by
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
8
{
9
    /**
10
     * @var string Контактное лицо
11
     */
12
    private $contactPerson;
13
    /**
14
     * @var string Способ выпуска товаров в оборот
15
     */
16
    private $releaseMethodType;
17
    /**
18
     * @var string Способ изготовления СИ
19
     */
20
    private $createMethodType;
21
    /**
22
     * @var string Идентификатор производственного заказа
23
     */
24
    private $productionOrderId;
25
26
    /**
27
     * @param string $contactPerson
28
     * @param string $releaseMethodType
29
     * @param string $createMethodType
30
     * @param string $productionOrderId
31
     * @param OrderProductLp[] $products
32
     */
33
    public function __construct(
34
        string $contactPerson,
35
        string $releaseMethodType,
36
        string $createMethodType,
37
        string $productionOrderId,
38
        array $products
39
    ) {
40
        parent::__construct($products);
41
42
        $this->contactPerson = $contactPerson;
43
        $this->releaseMethodType = $releaseMethodType;
44
        $this->createMethodType = $createMethodType;
45
        $this->productionOrderId = $productionOrderId;
46
    }
47
48
    public function getContactPerson(): string
49
    {
50
        return $this->contactPerson;
51
    }
52
53
    public function getReleaseMethodType(): string
54
    {
55
        return $this->releaseMethodType;
56
    }
57
58
    public function getCreateMethodType(): string
59
    {
60
        return $this->createMethodType;
61
    }
62
63
    public function getProductionOrderId(): string
64
    {
65
        return $this->productionOrderId;
66
    }
67
}