Total Complexity | 2 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
14 | class TimeoutPurchase implements CommandInterface |
||
15 | { |
||
16 | /** |
||
17 | * @var string |
||
18 | */ |
||
19 | private $purchaseId; |
||
20 | |||
21 | /** |
||
22 | * TimeoutPurchase constructor. |
||
23 | * @param $purchaseId |
||
24 | */ |
||
25 | public function __construct(string $purchaseId) |
||
28 | } |
||
29 | |||
30 | /** |
||
31 | * @return string |
||
32 | */ |
||
33 | public function getPurchaseId(): string |
||
36 | } |
||
37 | } |