Skip to content

Commit 0a9d04b

Browse files
Fix CouchBase settings array
'default' => 'Cache' (wrong) to 'bucket' => 'default' Took me some time to figure it out, so better change it to more clear example.
1 parent 148045c commit 0a9d04b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/couchbase.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@
2525
'timeout' => '1',
2626
'buckets' => [
2727
[
28-
'default' => 'Cache',// The bucket name, generally "default" by default
29-
'password' => ''// The bucket password if there is
28+
'bucket' => 'default', // The bucket name, generally "default" by default
29+
'password' => '' // The bucket password if there is
3030
],
31-
],
31+
]
3232
]);
3333

3434
/**

0 commit comments

Comments
 (0)