1 | <?php |
||
18 | class ConnectionsManager |
||
19 | { |
||
20 | |||
21 | /** |
||
22 | * @var ConnectionCollection|ConnectionInterface[] $connections |
||
23 | */ |
||
24 | private $connections; |
||
25 | |||
26 | |||
27 | /** |
||
28 | * ConnectionsManager constructor. |
||
29 | * |
||
30 | * @param ConnectionCollection|ConnectionInterface[] $connections |
||
31 | */ |
||
32 | public function __construct(ConnectionCollection $connections) |
||
36 | |||
37 | |||
38 | /** |
||
39 | * @throws CollectionDetailsException |
||
40 | * @throws CollectionLoaderException |
||
41 | * @since $VID:$ |
||
42 | */ |
||
43 | public function init() |
||
48 | |||
49 | |||
50 | public function registerConnections() |
||
57 | } |