Completed
Pull Request — master (#290)
by
unknown
41:51
created

ChangeItemQuantity::itemIdentifier()   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
use Webmozart\Assert\Assert;
8
9 View Code Duplication
final class ChangeItemQuantity
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...
10
{
11
    /**
12
     * @var string
13
     */
14
    private $orderToken;
15
16
    /**
17
     * @var mixed
18
     */
19
    private $itemIdentifier;
20
21
    /**
22
     * @var int
23
     */
24
    private $quantity;
25
26
    /**
27
     * @param string $orderToken
28
     * @param mixed $itemIdentifier
29
     * @param int $quantity
30
     */
31
    public function __construct($orderToken, $itemIdentifier, $quantity)
32
    {
33
        Assert::string($orderToken, 'Expected order token to be string, got %s');
34
        Assert::integer($quantity, 'Expected quantity to be integer, got %s');
35
        Assert::greaterThan($quantity, 0, 'Quantity should be greater than 0');
36
37
        $this->orderToken = $orderToken;
38
        $this->itemIdentifier = $itemIdentifier;
39
        $this->quantity = $quantity;
40
    }
41
42
    /**
43
     * @return string
44
     */
45
    public function orderToken()
46
    {
47
        return $this->orderToken;
48
    }
49
50
    /**
51
     * @return mixed
52
     */
53
    public function itemIdentifier()
54
    {
55
        return $this->itemIdentifier;
56
    }
57
58
    /**
59
     * @return int
60
     */
61
    public function quantity()
62
    {
63
        return $this->quantity;
64
    }
65
}
66