| Total Complexity | 1 |
| Total Lines | 13 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | trait PreparesTestingTransactions |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var array<string, array<string>> |
||
| 11 | */ |
||
| 12 | protected $transactionCollections = []; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @param array<string, array<string>> $transactionCollections |
||
| 16 | */ |
||
| 17 | 350 | public function setTransactionCollections($transactionCollections): void |
|
| 22 |