| Total Complexity | 3 | 
| Total Lines | 15 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 7 | final class TransactionContext extends AbstractContext  | 
            ||
| 8 | { | 
            ||
| 9 | public function __construct(string $methodName, private int $level, private string|null $isolationLevel = null)  | 
            ||
| 10 |     { | 
            ||
| 11 | parent::__construct($methodName);  | 
            ||
| 12 | }  | 
            ||
| 13 | |||
| 14 | public function getLevel(): int  | 
            ||
| 17 | }  | 
            ||
| 18 | |||
| 19 | public function getIsolationLevel(): string|null  | 
            ||
| 22 | }  | 
            ||
| 23 | }  | 
            ||
| 24 |