| Total Complexity | 2 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | final class AuraSqlSlaveDbInterceptor implements MethodInterceptor |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * DB property name |
||
| 17 | */ |
||
| 18 | public const PROP = 'pdo'; |
||
| 19 | |||
| 20 | public function __construct(private ConnectionLocatorInterface $connectionLocator) |
||
| 21 | { |
||
| 22 | } |
||
| 23 | |||
| 24 | /** |
||
| 25 | * {@inheritDoc} |
||
| 26 | */ |
||
| 27 | #[Override] |
||
| 36 | } |
||
| 37 | } |
||
| 38 |