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

ChangeItemQuantity   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 57
Duplicated Lines 100 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 4
lcom 0
cbo 1
dl 57
loc 57
rs 10
c 0
b 0
f 0

4 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 10 10 1
A orderToken() 4 4 1
A itemIdentifier() 4 4 1
A quantity() 4 4 1

How to fix   Duplicated Code   

Duplicated Code

Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.

Common duplication problems, and corresponding solutions are:

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