Completed
Pull Request — master (#290)
by
unknown
36:49 queued 34:03
created

AddProductReviewByCode::productCode()   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 Sylius\SyliusShopApiPlugin\Command;
6
7 View Code Duplication
final class AddProductReviewByCode
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 $productCode;
13
14
    /**
15
     * @var string
16
     */
17
    private $channelCode;
18
19
    /**
20
     * @var string
21
     */
22
    private $title;
23
24
    /**
25
     * @var int
26
     */
27
    private $rating;
28
29
    /**
30
     * @var string
31
     */
32
    private $comment;
33
34
    /**
35
     * @var string
36
     */
37
    private $email;
38
39
    public function __construct(string $productCode, string $channelCode, string $title, int $rating, string $comment, string $email)
40
    {
41
        $this->productCode = $productCode;
42
        $this->channelCode = $channelCode;
43
        $this->title = $title;
44
        $this->rating = $rating;
45
        $this->comment = $comment;
46
        $this->email = $email;
47
    }
48
49
    public function productCode(): string
50
    {
51
        return $this->productCode;
52
    }
53
54
    public function channelCode(): string
55
    {
56
        return $this->channelCode;
57
    }
58
59
    public function title(): string
60
    {
61
        return $this->title;
62
    }
63
64
    public function rating(): int
65
    {
66
        return $this->rating;
67
    }
68
69
    public function comment(): string
70
    {
71
        return $this->comment;
72
    }
73
74
    public function email(): string
75
    {
76
        return $this->email;
77
    }
78
}
79