| 1 | <?php |
||
| 17 | class ConnectionManager implements ConnectionManagerInterface |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @var array |
||
| 21 | */ |
||
| 22 | private $connections = []; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @inheritdoc |
||
| 26 | */ |
||
| 27 | 2 | public function registerConnection(ConnectionInterface $connection, $name = 'default') |
|
| 31 | |||
| 32 | /** |
||
| 33 | * @inheritdoc |
||
| 34 | */ |
||
| 35 | 2 | public function getConnection($name = null) |
|
| 43 | } |