Total Complexity | 2 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | trait TransactionId |
||
14 | { |
||
15 | /** |
||
16 | * @inheritDoc |
||
17 | */ |
||
18 | public function getTransactionId(): ?string |
||
21 | } |
||
22 | |||
23 | /** |
||
24 | * Sets the ID of the transaction. |
||
25 | * |
||
26 | * @param string $transactionId The transaction ID. |
||
27 | * @return $this |
||
28 | */ |
||
29 | public function setTransactionId(string $transactionId): self |
||
35 |