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');
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.