1 | <?php |
||
20 | class CouchbaseConnector implements Connectable |
||
21 | { |
||
22 | /** @var array */ |
||
23 | protected $configure = [ |
||
24 | 'host' => '127.0.0.1', |
||
25 | 'user' => '', |
||
26 | 'password' => '', |
||
27 | ]; |
||
28 | |||
29 | /** |
||
30 | * @param array $servers |
||
31 | * |
||
32 | * @return \CouchbaseCluster |
||
33 | */ |
||
34 | 23 | public function connect(array $servers) |
|
44 | } |
||
45 |