Issues (33)

src/OperationHandlerInterface.php (1 issue)

1
<?php
0 ignored issues
show
Header blocks must be separated by a single blank line
Loading history...
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