Total Complexity | 4 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
12 | final class OrmTransactionMiddleware implements MiddlewareInterface |
||
13 | { |
||
14 | /** |
||
15 | * @var EntityManagerInterface |
||
16 | */ |
||
17 | private $entityManager; |
||
18 | |||
19 | 3 | public function __construct(EntityManagerInterface $entityManager) |
|
22 | 3 | } |
|
23 | |||
24 | 3 | public function deliver(MessageInterface $message, callable $next): void |
|
43 |