1 | <?php |
||
0 ignored issues
–
show
Coding Style
introduced
by
![]() |
|||
2 | /** |
||
3 | * Copyright MediaCT. All rights reserved. |
||
4 | * https://www.mediact.nl |
||
5 | */ |
||
6 | |||
7 | namespace Johmanx10\Transaction; |
||
8 | |||
9 | interface OperationHandlerInterface |
||
10 | { |
||
11 | /** |
||
12 | * Handle the given operations. |
||
13 | * |
||
14 | * @param OperationInterface ...$operations |
||
15 | * |
||
16 | * @return void |
||
17 | */ |
||
18 | public function handle(OperationInterface ...$operations): void; |
||
19 | } |
||
20 |