Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
31 | 1 | public function __construct(string $payload, PaymentSummary $paymentSummary) |
|
32 | { |
||
33 | 1 | parent::__construct(self::TYPE_PAYMENT); |
|
34 | |||
35 | 1 | $this->isValidString($payload, 1000); |
|
36 | |||
37 | 1 | $this->title = 'buy'; |
|
38 | 1 | $this->payload = $payload; |
|
39 | 1 | $this->paymentSummary = $paymentSummary; |
|
40 | 1 | } |
|
41 | |||
57 |