| Total Complexity | 2 |
| Total Lines | 12 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | class ConnectionPool |
||
| 8 | { |
||
| 9 | private static array $connectionsPool = []; |
||
| 10 | |||
| 11 | 577 | public static function getConnectionPool(string $key): ConnectionInterface |
|
| 12 | { |
||
| 13 | 577 | return static::$connectionsPool[$key]; |
|
|
|
|||
| 14 | } |
||
| 15 | |||
| 16 | 577 | public static function setConnectionsPool(string $key, ConnectionInterface $config): void |
|
| 19 | 577 | } |
|
| 20 | } |
||
| 21 |