Issues (33)

TransactionRolledBackExceptionInterface.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\Exception;
8
9
use Johmanx10\Transaction\OperationFailureInterface;
10
use Throwable;
11
12
interface TransactionRolledBackExceptionInterface extends Throwable
13
{
14
    /**
15
     * Get the failed operations.
16
     *
17
     * @return OperationFailureInterface[]
18
     */
19
    public function getFailures(): array;
20
}
21