| 1 | <?php |
||
| 7 | class DefaultConnectionFactory implements ConnectionFactoryInterface |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var array |
||
| 11 | */ |
||
| 12 | private $connections; |
||
| 13 | |||
| 14 | public function __construct(array $connections) |
||
| 22 | |||
| 23 | public function addConnection($id, $connection) |
||
| 27 | |||
| 28 | public function getConnection(StorageSelection $selection = null) |
||
| 38 | } |
||
| 39 |