Total Complexity | 1 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | trait WithArangoDb |
||
8 | { |
||
9 | use Concerns\InteractsWithDatabase; |
||
10 | |||
11 | /** |
||
12 | * @var array<string, array<string>> |
||
13 | */ |
||
14 | protected array $transactionCollections = []; |
||
15 | |||
16 | /** |
||
17 | * @param array<string, array<string>> $transactionCollections |
||
18 | */ |
||
19 | public function setTransactionCollections(array $transactionCollections): void |
||
24 |