Total Complexity | 4 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | class TransactionMiddleware implements Middleware |
||
16 | { |
||
17 | protected Connection $connection; |
||
18 | |||
19 | public function __construct(Connection $connection) |
||
22 | } |
||
23 | |||
24 | /** |
||
25 | * Executes the given command and optionally returns a value |
||
26 | * |
||
27 | * @return mixed |
||
28 | * |
||
29 | * @throws Exception |
||
30 | * @throws Throwable |
||
31 | */ |
||
32 | public function execute(object $command, callable $next) |
||
53 |