We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With version 2.3.x of the php extension, the API of the PHP SDK has changed and only one parameter is allowed when constructing a CouchbaseCluster.
CouchbaseCluster
Documentation for 2.2.3 http://docs.couchbase.com/sdk-api/couchbase-php-client-2.2.3/classes/CouchbaseCluster.html
Documentation for 2.3.3 http://docs.couchbase.com/sdk-api/couchbase-php-client-2.3.3/classes/Couchbase.Cluster.html
The fix is simple in Ytake\LaravelCouchbase\Database\CouchbaseConnector
Ytake\LaravelCouchbase\Database\CouchbaseConnector
OLD:
public function connect(array $servers) { $configure = array_merge($this->configure, $servers); return new CouchbaseCluster( $configure['host'], $configure['user'], $configure['password'] ); }
NEW:
public function connect(array $servers) { $configure = array_merge($this->configure, $servers); return new CouchbaseCluster( $configure['host'] ); }
If this change is OK for you I can also provide it as a pull request
The text was updated successfully, but these errors were encountered:
still a work in progress (for laravel5.5) https://github.com/ytake/Laravel-Couchbase/blob/feature/laravel-55/src/Database/CouchbaseConnector.php#L36
Sorry, something went wrong.
https://github.com/ytake/Laravel-Couchbase/releases/tag/1.0.0
No branches or pull requests
With version 2.3.x of the php extension, the API of the PHP SDK has changed and only one parameter is allowed when constructing a
CouchbaseCluster
.Documentation for 2.2.3
http://docs.couchbase.com/sdk-api/couchbase-php-client-2.2.3/classes/CouchbaseCluster.html
Documentation for 2.3.3
http://docs.couchbase.com/sdk-api/couchbase-php-client-2.3.3/classes/Couchbase.Cluster.html
The fix is simple in
Ytake\LaravelCouchbase\Database\CouchbaseConnector
OLD:
NEW:
If this change is OK for you I can also provide it as a pull request
The text was updated successfully, but these errors were encountered: