summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--32.patch485
-rw-r--r--REFLECTION10231
-rw-r--r--php-pecl-couchbase4.spec37
3 files changed, 2091 insertions, 8662 deletions
diff --git a/32.patch b/32.patch
new file mode 100644
index 0000000..b94ee3a
--- /dev/null
+++ b/32.patch
@@ -0,0 +1,485 @@
+From aa2e3d26a8c4a288b972041f5eed8aade1b88b1b Mon Sep 17 00:00:00 2001
+From: Sergey Avseyev <sergey.avseyev@gmail.com>
+Date: Thu, 12 May 2022 14:51:48 +0300
+Subject: [PATCH] fix argument info structure
+
+Apparently IS_RESOURCE cannot be used in argument info to tag
+resource arguments.
+
+The following command crashes after zend_type_to_string encounters
+IS_RESOURCE argument
+
+ php -d extension=couchbase --re couchbase
+---
+ src/php_couchbase.cxx | 122 +++++++++++++++++++++---------------------
+ 1 file changed, 61 insertions(+), 61 deletions(-)
+
+diff --git a/src/php_couchbase.cxx b/src/php_couchbase.cxx
+index 4b8998c..64a615b 100644
+--- a/src/php_couchbase.cxx
++++ b/src/php_couchbase.cxx
+@@ -1756,7 +1756,7 @@ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_version, 0, 0, 0)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_clusterVersion, 0, 0, 2)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, bucketName, IS_STRING, 0)
+ ZEND_END_ARG_INFO()
+
+@@ -1767,17 +1767,17 @@ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 0)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_openBucket, 0, 0, 2)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, bucketName, IS_STRING, 0)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_closeBucket, 0, 0, 2)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, bucketName, IS_STRING, 0)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_documentUpsert, 0, 0, 7)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, bucket, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, scope, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, collection, IS_STRING, 0)
+@@ -1788,7 +1788,7 @@ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_documentInsert, 0, 0, 7)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, bucket, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, scope, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, collection, IS_STRING, 0)
+@@ -1799,7 +1799,7 @@ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_documentReplace, 0, 0, 7)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, bucket, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, scope, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, collection, IS_STRING, 0)
+@@ -1810,7 +1810,7 @@ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_documentAppend, 0, 0, 6)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, bucket, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, scope, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, collection, IS_STRING, 0)
+@@ -1820,7 +1820,7 @@ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_documentPrepend, 0, 0, 6)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, bucket, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, scope, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, collection, IS_STRING, 0)
+@@ -1830,7 +1830,7 @@ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_documentIncrement, 0, 0, 5)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, bucket, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, scope, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, collection, IS_STRING, 0)
+@@ -1839,7 +1839,7 @@ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_documentDecrement, 0, 0, 5)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, bucket, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, scope, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, collection, IS_STRING, 0)
+@@ -1848,7 +1848,7 @@ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_documentGet, 0, 0, 5)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, bucket, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, scope, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, collection, IS_STRING, 0)
+@@ -1857,7 +1857,7 @@ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_documentGetAndLock, 0, 0, 6)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, bucket, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, scope, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, collection, IS_STRING, 0)
+@@ -1867,7 +1867,7 @@ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_documentGetAndTouch, 0, 0, 6)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, bucket, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, scope, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, collection, IS_STRING, 0)
+@@ -1877,7 +1877,7 @@ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_documentUnlock, 0, 0, 6)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, bucket, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, scope, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, collection, IS_STRING, 0)
+@@ -1887,7 +1887,7 @@ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_documentRemove, 0, 0, 5)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, bucket, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, scope, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, collection, IS_STRING, 0)
+@@ -1896,7 +1896,7 @@ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_documentTouch, 0, 0, 6)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, bucket, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, scope, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, collection, IS_STRING, 0)
+@@ -1906,7 +1906,7 @@ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_documentExists, 0, 0, 5)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, bucket, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, scope, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, collection, IS_STRING, 0)
+@@ -1915,7 +1915,7 @@ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_documentMutateIn, 0, 0, 6)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, bucket, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, scope, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, collection, IS_STRING, 0)
+@@ -1925,7 +1925,7 @@ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_documentLookupIn, 0, 0, 6)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, bucket, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, scope, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, collection, IS_STRING, 0)
+@@ -1935,7 +1935,7 @@ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_documentGetMulti, 0, 0, 5)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, bucket, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, scope, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, collection, IS_STRING, 0)
+@@ -1944,7 +1944,7 @@ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_documentRemoveMulti, 0, 0, 5)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, bucket, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, scope, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, collection, IS_STRING, 0)
+@@ -1953,7 +1953,7 @@ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_documentUpsertMulti, 0, 0, 5)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, bucket, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, scope, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, collection, IS_STRING, 0)
+@@ -1962,19 +1962,19 @@ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_query, 0, 0, 2)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, statement, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_analyticsQuery, 0, 0, 2)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, statement, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_viewQuery, 0, 0, 5)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, bucketName, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, designDocumentName, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, viewName, IS_STRING, 0)
+@@ -1983,31 +1983,31 @@ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_searchQuery, 0, 0, 3)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, indexName, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, query, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_ping, 0, 0, 1)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_diagnostics, 0, 0, 2)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, reportId, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_searchIndexUpsert, 0, 0, 2)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, index, IS_ARRAY, 0)
+ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_viewIndexUpsert, 0, 0, 4)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, bucketName, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, index, IS_ARRAY, 0)
+ ZEND_ARG_TYPE_INFO(0, nameSpace, IS_LONG, 0)
+@@ -2015,64 +2015,64 @@ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_bucketCreate, 0, 0, 2)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, bucketSettings, IS_ARRAY, 0)
+ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_bucketUpdate, 0, 0, 2)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, bucketSettings, IS_ARRAY, 0)
+ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_bucketGet, 0, 0, 2)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, name, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_bucketGetAll, 0, 0, 1)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_bucketDrop, 0, 0, 2)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, name, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_bucketFlush, 0, 0, 2)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, name, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(ai_CouchbaseExtension_createTransactions, 0, 0, IS_RESOURCE, 1)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, configuration, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(ai_CouchbaseExtension_createTransactionContext, 0, 0, IS_RESOURCE, 1)
+-ZEND_ARG_TYPE_INFO(0, transactions, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, transactions)
+ ZEND_ARG_TYPE_INFO(0, configuration, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_transactionNewAttempt, 0, 0, 1)
+-ZEND_ARG_TYPE_INFO(0, transaction, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, transactions)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_transactionCommit, 0, 0, 1)
+-ZEND_ARG_TYPE_INFO(0, transaction, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, transactions)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_transactionRollback, 0, 0, 1)
+-ZEND_ARG_TYPE_INFO(0, transaction, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, transactions)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_transactionGet, 0, 0, 5)
+-ZEND_ARG_TYPE_INFO(0, transaction, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, transactions)
+ ZEND_ARG_TYPE_INFO(0, bucketName, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, scopeName, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, collectionName, IS_STRING, 0)
+@@ -2080,7 +2080,7 @@ ZEND_ARG_TYPE_INFO(0, id, IS_STRING, 0)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_transactionInsert, 0, 0, 6)
+-ZEND_ARG_TYPE_INFO(0, transaction, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, transactions)
+ ZEND_ARG_TYPE_INFO(0, bucketName, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, scopeName, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, collectionName, IS_STRING, 0)
+@@ -2089,81 +2089,81 @@ ZEND_ARG_TYPE_INFO(0, value, IS_STRING, 0)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_transactionReplace, 0, 0, 3)
+-ZEND_ARG_TYPE_INFO(0, transaction, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, transactions)
+ ZEND_ARG_TYPE_INFO(0, document, IS_ARRAY, 0)
+ ZEND_ARG_TYPE_INFO(0, value, IS_STRING, 0)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_transactionRemove, 0, 0, 2)
+-ZEND_ARG_TYPE_INFO(0, transaction, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, transactions)
+ ZEND_ARG_TYPE_INFO(0, document, IS_ARRAY, 0)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_transactionQuery, 0, 0, 2)
+-ZEND_ARG_TYPE_INFO(0, transaction, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, transactions)
+ ZEND_ARG_TYPE_INFO(0, statement, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_userUpsert, 0, 0, 2)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, user, IS_ARRAY, 0)
+ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_userGet, 0, 0, 2)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, name, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_userGetAll, 0, 0, 1)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_userDrop, 0, 0, 2)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, name, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_groupUpsert, 0, 0, 2)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, group, IS_ARRAY, 0)
+ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_groupGet, 0, 0, 2)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, name, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_groupGetAll, 0, 0, 1)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_groupDrop, 0, 0, 2)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, name, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_roleGetAll, 0, 0, 1)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_queryIndexGetAll, 0, 0, 2)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, bucketName, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_queryIndexCreate, 0, 0, 4)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, bucketName, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, indexName, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, fields, IS_ARRAY, 0)
+@@ -2171,26 +2171,26 @@ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_queryIndexCreatePrimary, 0, 0, 2)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, bucketName, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_queryIndexDrop, 0, 0, 3)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, bucketName, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, indexName, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_queryIndexDropPrimary, 0, 0, 2)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, bucketName, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
+
+ ZEND_BEGIN_ARG_INFO_EX(ai_CouchbaseExtension_queryIndexBuildDeferred, 0, 0, 2)
+-ZEND_ARG_TYPE_INFO(0, connection, IS_RESOURCE, 0)
++ZEND_ARG_INFO(0, connection)
+ ZEND_ARG_TYPE_INFO(0, bucketName, IS_STRING, 0)
+ ZEND_ARG_TYPE_INFO(0, options, IS_ARRAY, 1)
+ ZEND_END_ARG_INFO()
diff --git a/REFLECTION b/REFLECTION
index 5da8066..be91faf 100644
--- a/REFLECTION
+++ b/REFLECTION
@@ -1,849 +1,597 @@
-Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
+Extension [ <persistent> extension #120 couchbase version 4.0.0 ] {
- Dependencies {
Dependency [ json (Required) ]
}
- INI {
- Entry [ couchbase.log_level <ALL> ]
- Current = 'WARN'
- }
- Entry [ couchbase.encoder.format <ALL> ]
- Current = 'json'
- }
- Entry [ couchbase.encoder.compression <ALL> ]
- Current = 'off'
- }
- Entry [ couchbase.encoder.compression_threshold <ALL> ]
- Current = '0'
- }
- Entry [ couchbase.encoder.compression_factor <ALL> ]
- Current = '0.0'
- }
- Entry [ couchbase.decoder.json_arrays <ALL> ]
- Current = '1'
+ Entry [ couchbase.max_persistent <SYSTEM> ]
+ Current = '-1'
}
- Entry [ couchbase.pool.max_idle_time_sec <ALL> ]
- Current = '60'
+ Entry [ couchbase.persistent_timeout <SYSTEM> ]
+ Current = '-1'
}
- Entry [ couchbase.allow_fallback_to_bucket_connection <ALL> ]
- Current = '0'
+ Entry [ couchbase.log_level <ALL> ]
+ Current = ''
}
}
- - Constants [179] {
- Constant [ int COUCHBASE_PERSISTTO_MASTER ] { 1 }
- Constant [ int COUCHBASE_PERSISTTO_ONE ] { 1 }
- Constant [ int COUCHBASE_PERSISTTO_TWO ] { 2 }
- Constant [ int COUCHBASE_PERSISTTO_THREE ] { 4 }
- Constant [ int COUCHBASE_REPLICATETO_ONE ] { 16 }
- Constant [ int COUCHBASE_REPLICATETO_TWO ] { 32 }
- Constant [ int COUCHBASE_REPLICATETO_THREE ] { 64 }
- Constant [ int COUCHBASE_CNTL_OP_TIMEOUT ] { 0 }
- Constant [ int COUCHBASE_CNTL_VIEW_TIMEOUT ] { 1 }
- Constant [ int COUCHBASE_CNTL_DURABILITY_INTERVAL ] { 14 }
- Constant [ int COUCHBASE_CNTL_DURABILITY_TIMEOUT ] { 13 }
- Constant [ int COUCHBASE_CNTL_HTTP_TIMEOUT ] { 15 }
- Constant [ int COUCHBASE_CNTL_CONFIGURATION_TIMEOUT ] { 18 }
- Constant [ int COUCHBASE_CNTL_CONFDELAY_THRESH ] { 25 }
- Constant [ int COUCHBASE_CNTL_CONFIG_NODE_TIMEOUT ] { 27 }
- Constant [ int COUCHBASE_CNTL_HTCONFIG_IDLE_TIMEOUT ] { 28 }
- Constant [ int COUCHBASE_VALUE_F_JSON ] { 1 }
- Constant [ int COUCHBASE_N1XSPEC_T_DEFAULT ] { 0 }
- Constant [ int COUCHBASE_N1XSPEC_T_GSI ] { 1 }
- Constant [ int COUCHBASE_N1XSPEC_T_VIEW ] { 2 }
- Constant [ int COUCHBASE_SUCCESS ] { 0 }
- Constant [ int COUCHBASE_ERR_GENERIC ] { 100 }
- Constant [ int COUCHBASE_ERR_TIMEOUT ] { 201 }
- Constant [ int COUCHBASE_ERR_REQUEST_CANCELED ] { 202 }
- Constant [ int COUCHBASE_ERR_INVALID_ARGUMENT ] { 203 }
- Constant [ int COUCHBASE_ERR_SERVICE_NOT_AVAILABLE ] { 204 }
- Constant [ int COUCHBASE_ERR_INTERNAL_SERVER_FAILURE ] { 205 }
- Constant [ int COUCHBASE_ERR_AUTHENTICATION_FAILURE ] { 206 }
- Constant [ int COUCHBASE_ERR_TEMPORARY_FAILURE ] { 207 }
- Constant [ int COUCHBASE_ERR_PARSING_FAILURE ] { 208 }
- Constant [ int COUCHBASE_ERR_CAS_MISMATCH ] { 209 }
- Constant [ int COUCHBASE_ERR_BUCKET_NOT_FOUND ] { 210 }
- Constant [ int COUCHBASE_ERR_COLLECTION_NOT_FOUND ] { 211 }
- Constant [ int COUCHBASE_ERR_ENCODING_FAILURE ] { 212 }
- Constant [ int COUCHBASE_ERR_DECODING_FAILURE ] { 213 }
- Constant [ int COUCHBASE_ERR_UNSUPPORTED_OPERATION ] { 214 }
- Constant [ int COUCHBASE_ERR_AMBIGUOUS_TIMEOUT ] { 215 }
- Constant [ int COUCHBASE_ERR_UNAMBIGUOUS_TIMEOUT ] { 216 }
- Constant [ int COUCHBASE_ERR_SCOPE_NOT_FOUND ] { 217 }
- Constant [ int COUCHBASE_ERR_INDEX_NOT_FOUND ] { 218 }
- Constant [ int COUCHBASE_ERR_INDEX_EXISTS ] { 219 }
- Constant [ int COUCHBASE_ERR_RATE_LIMITED ] { 220 }
- Constant [ int COUCHBASE_ERR_QUOTA_LIMITED ] { 221 }
- Constant [ int COUCHBASE_ERR_DOCUMENT_NOT_FOUND ] { 301 }
- Constant [ int COUCHBASE_ERR_DOCUMENT_UNRETRIEVABLE ] { 302 }
- Constant [ int COUCHBASE_ERR_DOCUMENT_LOCKED ] { 303 }
- Constant [ int COUCHBASE_ERR_VALUE_TOO_LARGE ] { 304 }
- Constant [ int COUCHBASE_ERR_DOCUMENT_EXISTS ] { 305 }
- Constant [ int COUCHBASE_ERR_VALUE_NOT_JSON ] { 306 }
- Constant [ int COUCHBASE_ERR_DURABILITY_LEVEL_NOT_AVAILABLE ] { 307 }
- Constant [ int COUCHBASE_ERR_DURABILITY_IMPOSSIBLE ] { 308 }
- Constant [ int COUCHBASE_ERR_DURABILITY_AMBIGUOUS ] { 309 }
- Constant [ int COUCHBASE_ERR_DURABLE_WRITE_IN_PROGRESS ] { 310 }
- Constant [ int COUCHBASE_ERR_DURABLE_WRITE_RE_COMMIT_IN_PROGRESS ] { 311 }
- Constant [ int COUCHBASE_ERR_MUTATION_LOST ] { 312 }
- Constant [ int COUCHBASE_ERR_SUBDOC_PATH_NOT_FOUND ] { 313 }
- Constant [ int COUCHBASE_ERR_SUBDOC_PATH_MISMATCH ] { 314 }
- Constant [ int COUCHBASE_ERR_SUBDOC_PATH_INVALID ] { 315 }
- Constant [ int COUCHBASE_ERR_SUBDOC_PATH_TOO_BIG ] { 316 }
- Constant [ int COUCHBASE_ERR_SUBDOC_PATH_TOO_DEEP ] { 317 }
- Constant [ int COUCHBASE_ERR_SUBDOC_VALUE_TOO_DEEP ] { 318 }
- Constant [ int COUCHBASE_ERR_SUBDOC_VALUE_INVALID ] { 319 }
- Constant [ int COUCHBASE_ERR_SUBDOC_DOCUMENT_NOT_JSON ] { 320 }
- Constant [ int COUCHBASE_ERR_SUBDOC_NUMBER_TOO_BIG ] { 321 }
- Constant [ int COUCHBASE_ERR_SUBDOC_DELTA_INVALID ] { 322 }
- Constant [ int COUCHBASE_ERR_SUBDOC_PATH_EXISTS ] { 323 }
- Constant [ int COUCHBASE_ERR_SUBDOC_XATTR_UNKNOWN_MACRO ] { 324 }
- Constant [ int COUCHBASE_ERR_SUBDOC_XATTR_INVALID_FLAG_COMBO ] { 325 }
- Constant [ int COUCHBASE_ERR_SUBDOC_XATTR_INVALID_KEY_COMBO ] { 326 }
- Constant [ int COUCHBASE_ERR_SUBDOC_XATTR_UNKNOWN_VIRTUAL_ATTRIBUTE ] { 327 }
- Constant [ int COUCHBASE_ERR_SUBDOC_XATTR_CANNOT_MODIFY_VIRTUAL_ATTRIBUTE ] { 328 }
- Constant [ int COUCHBASE_ERR_SUBDOC_XATTR_INVALID_ORDER ] { 329 }
- Constant [ int COUCHBASE_ERR_PLANNING_FAILURE ] { 401 }
- Constant [ int COUCHBASE_ERR_INDEX_FAILURE ] { 402 }
- Constant [ int COUCHBASE_ERR_PREPARED_STATEMENT_FAILURE ] { 403 }
- Constant [ int COUCHBASE_ERR_KEYSPACE_NOT_FOUND ] { 404 }
- Constant [ int COUCHBASE_ERR_DML_FAILURE ] { 405 }
- Constant [ int COUCHBASE_ERR_COMPILATION_FAILED ] { 501 }
- Constant [ int COUCHBASE_ERR_JOB_QUEUE_FULL ] { 502 }
- Constant [ int COUCHBASE_ERR_DATASET_NOT_FOUND ] { 503 }
- Constant [ int COUCHBASE_ERR_DATAVERSE_NOT_FOUND ] { 504 }
- Constant [ int COUCHBASE_ERR_DATASET_EXISTS ] { 505 }
- Constant [ int COUCHBASE_ERR_DATAVERSE_EXISTS ] { 506 }
- Constant [ int COUCHBASE_ERR_ANALYTICS_LINK_NOT_FOUND ] { 507 }
- Constant [ int COUCHBASE_ERR_VIEW_NOT_FOUND ] { 701 }
- Constant [ int COUCHBASE_ERR_DESIGN_DOCUMENT_NOT_FOUND ] { 702 }
- Constant [ int COUCHBASE_ERR_COLLECTION_ALREADY_EXISTS ] { 801 }
- Constant [ int COUCHBASE_ERR_SCOPE_EXISTS ] { 802 }
- Constant [ int COUCHBASE_ERR_USER_NOT_FOUND ] { 803 }
- Constant [ int COUCHBASE_ERR_GROUP_NOT_FOUND ] { 804 }
- Constant [ int COUCHBASE_ERR_BUCKET_ALREADY_EXISTS ] { 805 }
- Constant [ int COUCHBASE_ERR_SSL_INVALID_CIPHERSUITES ] { 1000 }
- Constant [ int COUCHBASE_ERR_SSL_NO_CIPHERS ] { 1001 }
- Constant [ int COUCHBASE_ERR_SSL_ERROR ] { 1002 }
- Constant [ int COUCHBASE_ERR_SSL_CANTVERIFY ] { 1003 }
- Constant [ int COUCHBASE_ERR_FD_LIMIT_REACHED ] { 1004 }
- Constant [ int COUCHBASE_ERR_NODE_UNREACHABLE ] { 1005 }
- Constant [ int COUCHBASE_ERR_CONTROL_UNKNOWN_CODE ] { 1006 }
- Constant [ int COUCHBASE_ERR_CONTROL_UNSUPPORTED_MODE ] { 1007 }
- Constant [ int COUCHBASE_ERR_CONTROL_INVALID_ARGUMENT ] { 1008 }
- Constant [ int COUCHBASE_ERR_DUPLICATE_COMMANDS ] { 1009 }
- Constant [ int COUCHBASE_ERR_NO_MATCHING_SERVER ] { 1010 }
- Constant [ int COUCHBASE_ERR_PLUGIN_VERSION_MISMATCH ] { 1011 }
- Constant [ int COUCHBASE_ERR_INVALID_HOST_FORMAT ] { 1012 }
- Constant [ int COUCHBASE_ERR_INVALID_CHAR ] { 1013 }
- Constant [ int COUCHBASE_ERR_BAD_ENVIRONMENT ] { 1014 }
- Constant [ int COUCHBASE_ERR_NO_MEMORY ] { 1015 }
- Constant [ int COUCHBASE_ERR_NO_CONFIGURATION ] { 1016 }
- Constant [ int COUCHBASE_ERR_DLOPEN_FAILED ] { 1017 }
- Constant [ int COUCHBASE_ERR_DLSYM_FAILED ] { 1018 }
- Constant [ int COUCHBASE_ERR_CONFIG_CACHE_INVALID ] { 1019 }
- Constant [ int COUCHBASE_ERR_COLLECTION_MANIFEST_IS_AHEAD ] { 1020 }
- Constant [ int COUCHBASE_ERR_COLLECTION_NO_MANIFEST ] { 1021 }
- Constant [ int COUCHBASE_ERR_COLLECTION_CANNOT_APPLY_MANIFEST ] { 1022 }
- Constant [ int COUCHBASE_ERR_AUTH_CONTINUE ] { 1023 }
- Constant [ int COUCHBASE_ERR_CONNECTION_REFUSED ] { 1024 }
- Constant [ int COUCHBASE_ERR_SOCKET_SHUTDOWN ] { 1025 }
- Constant [ int COUCHBASE_ERR_CONNECTION_RESET ] { 1026 }
- Constant [ int COUCHBASE_ERR_CANNOT_GET_PORT ] { 1027 }
- Constant [ int COUCHBASE_ERR_INCOMPLETE_PACKET ] { 1028 }
- Constant [ int COUCHBASE_ERR_SDK_FEATURE_UNAVAILABLE ] { 1029 }
- Constant [ int COUCHBASE_ERR_OPTIONS_CONFLICT ] { 1030 }
- Constant [ int COUCHBASE_ERR_KVENGINE_INVALID_PACKET ] { 1031 }
- Constant [ int COUCHBASE_ERR_DURABILITY_TOO_MANY ] { 1032 }
- Constant [ int COUCHBASE_ERR_SHEDULE_FAILURE ] { 1033 }
- Constant [ int COUCHBASE_ERR_DURABILITY_NO_MUTATION_TOKENS ] { 1034 }
- Constant [ int COUCHBASE_ERR_SASLMECH_UNAVAILABLE ] { 1035 }
- Constant [ int COUCHBASE_ERR_TOO_MANY_REDIRECTS ] { 1036 }
- Constant [ int COUCHBASE_ERR_MAP_CHANGED ] { 1037 }
- Constant [ int COUCHBASE_ERR_NOT_MY_VBUCKET ] { 1038 }
- Constant [ int COUCHBASE_ERR_UNKNOWN_SUBDOC_COMMAND ] { 1039 }
- Constant [ int COUCHBASE_ERR_KVENGINE_UNKNOWN_ERROR ] { 1040 }
- Constant [ int COUCHBASE_ERR_NAMESERVER ] { 1041 }
- Constant [ int COUCHBASE_ERR_INVALID_RANGE ] { 1042 }
- Constant [ int COUCHBASE_ERR_NOT_STORED ] { 1043 }
- Constant [ int COUCHBASE_ERR_BUSY ] { 1044 }
- Constant [ int COUCHBASE_ERR_SDK_INTERNAL ] { 1045 }
- Constant [ int COUCHBASE_ERR_INVALID_DELTA ] { 1046 }
- Constant [ int COUCHBASE_ERR_NO_COMMANDS ] { 1047 }
- Constant [ int COUCHBASE_ERR_NETWORK ] { 1048 }
- Constant [ int COUCHBASE_ERR_UNKNOWN_HOST ] { 1049 }
- Constant [ int COUCHBASE_ERR_PROTOCOL_ERROR ] { 1050 }
- Constant [ int COUCHBASE_ERR_CONNECT_ERROR ] { 1051 }
- Constant [ int COUCHBASE_ERR_EMPTY_KEY ] { 1052 }
- Constant [ int COUCHBASE_ERR_HTTP ] { 1053 }
- Constant [ int COUCHBASE_ERR_QUERY ] { 1054 }
- Constant [ int COUCHBASE_ERR_TOPOLOGY_CHANGE ] { 1055 }
- Constant [ int COUCHBASE_TMPFAIL ] { 207 }
- Constant [ int COUCHBASE_KEYALREADYEXISTS ] { 305 }
- Constant [ int COUCHBASE_KEYNOTFOUND ] { 301 }
- Constant [ int COUCHBASE_VAL_MASK ] { 31 }
- Constant [ int COUCHBASE_VAL_IS_STRING ] { 0 }
- Constant [ int COUCHBASE_VAL_IS_LONG ] { 1 }
- Constant [ int COUCHBASE_VAL_IS_DOUBLE ] { 2 }
- Constant [ int COUCHBASE_VAL_IS_BOOL ] { 3 }
- Constant [ int COUCHBASE_VAL_IS_SERIALIZED ] { 4 }
- Constant [ int COUCHBASE_VAL_IS_JSON ] { 6 }
- Constant [ int COUCHBASE_COMPRESSION_MASK ] { 224 }
- Constant [ int COUCHBASE_COMPRESSION_NONE ] { 0 }
- Constant [ int COUCHBASE_COMPRESSION_ZLIB ] { 32 }
- Constant [ int COUCHBASE_COMPRESSION_FASTLZ ] { 64 }
- Constant [ int COUCHBASE_COMPRESSION_MCISCOMPRESSED ] { 16 }
- Constant [ int COUCHBASE_SERTYPE_JSON ] { 0 }
- Constant [ int COUCHBASE_SERTYPE_PHP ] { 2 }
- Constant [ int COUCHBASE_CMPRTYPE_NONE ] { 0 }
- Constant [ int COUCHBASE_CMPRTYPE_ZLIB ] { 1 }
- Constant [ int COUCHBASE_CMPRTYPE_FASTLZ ] { 2 }
- Constant [ int COUCHBASE_CFFMT_MASK ] { -16777216 }
- Constant [ int COUCHBASE_CFFMT_PRIVATE ] { 16777216 }
- Constant [ int COUCHBASE_CFFMT_JSON ] { 33554432 }
- Constant [ int COUCHBASE_CFFMT_RAW ] { 50331648 }
- Constant [ int COUCHBASE_CFFMT_STRING ] { 67108864 }
- Constant [ int Couchbase\ENCODER_FORMAT_JSON ] { 0 }
- Constant [ int Couchbase\ENCODER_FORMAT_PHP ] { 2 }
- Constant [ int Couchbase\ENCODER_COMPRESSION_NONE ] { 0 }
- Constant [ int Couchbase\ENCODER_COMPRESSION_ZLIB ] { 1 }
- Constant [ int Couchbase\ENCODER_COMPRESSION_FASTLZ ] { 2 }
- Constant [ int Couchbase\HAVE_IGBINARY ] { 0 }
- Constant [ int Couchbase\HAVE_ZLIB ] { 1 }
- }
-
- Functions {
- Function [ <internal:couchbase> function Couchbase\fastlzCompress ] {
+ Function [ <internal:couchbase> function Couchbase\Extension\version ] {
- - Parameters [1] {
- Parameter #0 [ <required> $data ]
+ - Parameters [0] {
}
}
- Function [ <internal:couchbase> function Couchbase\fastlzDecompress ] {
+ Function [ <internal:couchbase> function Couchbase\Extension\clusterVersion ] {
- - Parameters [1] {
- Parameter #0 [ <required> $data ]
+ - Parameters [2] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <required> string $bucketName ]
}
}
- Function [ <internal:couchbase> function Couchbase\zlibCompress ] {
+ Function [ <internal:couchbase> function Couchbase\Extension\createConnection ] {
- - Parameters [1] {
- Parameter #0 [ <required> $data ]
+ - Parameters [3] {
+ Parameter #0 [ <required> string $connectionHash ]
+ Parameter #1 [ <required> string $connectionString ]
+ Parameter #2 [ <required> array $options ]
}
}
- Function [ <internal:couchbase> function Couchbase\zlibDecompress ] {
+ Function [ <internal:couchbase> function Couchbase\Extension\openBucket ] {
- - Parameters [1] {
- Parameter #0 [ <required> $data ]
+ - Parameters [2] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <required> string $bucketName ]
}
}
- Function [ <internal:couchbase> function Couchbase\passthruEncoder ] {
+ Function [ <internal:couchbase> function Couchbase\Extension\closeBucket ] {
- - Parameters [1] {
- Parameter #0 [ <required> $value ]
+ - Parameters [2] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <required> string $bucketName ]
}
}
- Function [ <internal:couchbase> function Couchbase\passthruDecoder ] {
+ Function [ <internal:couchbase> function Couchbase\Extension\documentUpsert ] {
- - Parameters [3] {
- Parameter #0 [ <required> $bytes ]
- Parameter #1 [ <required> $flags ]
- Parameter #2 [ <required> $datatype ]
+ - Parameters [8] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <required> string $bucket ]
+ Parameter #2 [ <required> string $scope ]
+ Parameter #3 [ <required> string $collection ]
+ Parameter #4 [ <required> string $id ]
+ Parameter #5 [ <required> string $value ]
+ Parameter #6 [ <required> int $flags ]
+ Parameter #7 [ <optional> ?array $options = <default> ]
}
}
- Function [ <internal:couchbase> function Couchbase\defaultEncoder ] {
+ Function [ <internal:couchbase> function Couchbase\Extension\documentInsert ] {
- - Parameters [1] {
- Parameter #0 [ <required> $value ]
+ - Parameters [8] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <required> string $bucket ]
+ Parameter #2 [ <required> string $scope ]
+ Parameter #3 [ <required> string $collection ]
+ Parameter #4 [ <required> string $id ]
+ Parameter #5 [ <required> string $value ]
+ Parameter #6 [ <required> int $flags ]
+ Parameter #7 [ <optional> ?array $options = <default> ]
}
}
- Function [ <internal:couchbase> function Couchbase\defaultDecoder ] {
+ Function [ <internal:couchbase> function Couchbase\Extension\documentReplace ] {
- - Parameters [3] {
- Parameter #0 [ <required> $bytes ]
- Parameter #1 [ <required> $flags ]
- Parameter #2 [ <required> $datatype ]
+ - Parameters [8] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <required> string $bucket ]
+ Parameter #2 [ <required> string $scope ]
+ Parameter #3 [ <required> string $collection ]
+ Parameter #4 [ <required> string $id ]
+ Parameter #5 [ <required> string $value ]
+ Parameter #6 [ <required> int $flags ]
+ Parameter #7 [ <optional> ?array $options = <default> ]
}
}
- Function [ <internal:couchbase> function Couchbase\basicEncoderV1 ] {
+ Function [ <internal:couchbase> function Couchbase\Extension\documentAppend ] {
- - Parameters [2] {
- Parameter #0 [ <required> $value ]
- Parameter #1 [ <required> $options ]
+ - Parameters [7] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <required> string $bucket ]
+ Parameter #2 [ <required> string $scope ]
+ Parameter #3 [ <required> string $collection ]
+ Parameter #4 [ <required> string $id ]
+ Parameter #5 [ <required> string $value ]
+ Parameter #6 [ <optional> ?array $options = <default> ]
}
}
- Function [ <internal:couchbase> function Couchbase\basicDecoderV1 ] {
+ Function [ <internal:couchbase> function Couchbase\Extension\documentPrepend ] {
- - Parameters [4] {
- Parameter #0 [ <required> $bytes ]
- Parameter #1 [ <required> $flags ]
- Parameter #2 [ <required> $datatype ]
- Parameter #3 [ <required> $options ]
+ - Parameters [7] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <required> string $bucket ]
+ Parameter #2 [ <required> string $scope ]
+ Parameter #3 [ <required> string $collection ]
+ Parameter #4 [ <required> string $id ]
+ Parameter #5 [ <required> string $value ]
+ Parameter #6 [ <optional> ?array $options = <default> ]
}
}
- Function [ <internal:couchbase> function couchbase_fastlz_compress ] {
+ Function [ <internal:couchbase> function Couchbase\Extension\documentIncrement ] {
- - Parameters [1] {
- Parameter #0 [ <required> $data ]
+ - Parameters [6] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <required> string $bucket ]
+ Parameter #2 [ <required> string $scope ]
+ Parameter #3 [ <required> string $collection ]
+ Parameter #4 [ <required> string $id ]
+ Parameter #5 [ <optional> ?array $options = <default> ]
}
}
- Function [ <internal:couchbase> function couchbase_fastlz_decompress ] {
+ Function [ <internal:couchbase> function Couchbase\Extension\documentDecrement ] {
- - Parameters [1] {
- Parameter #0 [ <required> $data ]
+ - Parameters [6] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <required> string $bucket ]
+ Parameter #2 [ <required> string $scope ]
+ Parameter #3 [ <required> string $collection ]
+ Parameter #4 [ <required> string $id ]
+ Parameter #5 [ <optional> ?array $options = <default> ]
}
}
- Function [ <internal:couchbase> function couchbase_zlib_compress ] {
+ Function [ <internal:couchbase> function Couchbase\Extension\documentGet ] {
- - Parameters [1] {
- Parameter #0 [ <required> $data ]
+ - Parameters [6] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <required> string $bucket ]
+ Parameter #2 [ <required> string $scope ]
+ Parameter #3 [ <required> string $collection ]
+ Parameter #4 [ <required> string $id ]
+ Parameter #5 [ <optional> ?array $options = <default> ]
}
}
- Function [ <internal:couchbase> function couchbase_zlib_decompress ] {
+ Function [ <internal:couchbase> function Couchbase\Extension\documentGetAndTouch ] {
- - Parameters [1] {
- Parameter #0 [ <required> $data ]
+ - Parameters [7] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <required> string $bucket ]
+ Parameter #2 [ <required> string $scope ]
+ Parameter #3 [ <required> string $collection ]
+ Parameter #4 [ <required> string $id ]
+ Parameter #5 [ <required> int $expirySeconds ]
+ Parameter #6 [ <optional> ?array $options = <default> ]
}
}
- Function [ <internal:couchbase> function couchbase_passthru_encoder ] {
+ Function [ <internal:couchbase> function Couchbase\Extension\documentGetAndLock ] {
- - Parameters [1] {
- Parameter #0 [ <required> $value ]
+ - Parameters [7] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <required> string $bucket ]
+ Parameter #2 [ <required> string $scope ]
+ Parameter #3 [ <required> string $collection ]
+ Parameter #4 [ <required> string $id ]
+ Parameter #5 [ <required> int $lockTimeSeconds ]
+ Parameter #6 [ <optional> ?array $options = <default> ]
}
}
- Function [ <internal:couchbase> function couchbase_passthru_decoder ] {
+ Function [ <internal:couchbase> function Couchbase\Extension\documentUnlock ] {
- - Parameters [3] {
- Parameter #0 [ <required> $bytes ]
- Parameter #1 [ <required> $flags ]
- Parameter #2 [ <required> $datatype ]
+ - Parameters [7] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <required> string $bucket ]
+ Parameter #2 [ <required> string $scope ]
+ Parameter #3 [ <required> string $collection ]
+ Parameter #4 [ <required> string $id ]
+ Parameter #5 [ <required> string $cas ]
+ Parameter #6 [ <optional> ?array $options = <default> ]
}
}
- Function [ <internal:couchbase> function couchbase_default_encoder ] {
+ Function [ <internal:couchbase> function Couchbase\Extension\documentRemove ] {
- - Parameters [1] {
- Parameter #0 [ <required> $value ]
+ - Parameters [6] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <required> string $bucket ]
+ Parameter #2 [ <required> string $scope ]
+ Parameter #3 [ <required> string $collection ]
+ Parameter #4 [ <required> string $id ]
+ Parameter #5 [ <optional> ?array $options = <default> ]
}
}
- Function [ <internal:couchbase> function couchbase_default_decoder ] {
+ Function [ <internal:couchbase> function Couchbase\Extension\documentTouch ] {
- - Parameters [3] {
- Parameter #0 [ <required> $bytes ]
- Parameter #1 [ <required> $flags ]
- Parameter #2 [ <required> $datatype ]
+ - Parameters [7] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <required> string $bucket ]
+ Parameter #2 [ <required> string $scope ]
+ Parameter #3 [ <required> string $collection ]
+ Parameter #4 [ <required> string $id ]
+ Parameter #5 [ <required> int $expirySeconds ]
+ Parameter #6 [ <optional> ?array $options = <default> ]
}
}
- Function [ <internal:couchbase> function couchbase_basic_encoder_v1 ] {
+ Function [ <internal:couchbase> function Couchbase\Extension\documentExists ] {
- - Parameters [2] {
- Parameter #0 [ <required> $value ]
- Parameter #1 [ <required> $options ]
+ - Parameters [6] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <required> string $bucket ]
+ Parameter #2 [ <required> string $scope ]
+ Parameter #3 [ <required> string $collection ]
+ Parameter #4 [ <required> string $id ]
+ Parameter #5 [ <optional> ?array $options = <default> ]
}
}
- Function [ <internal:couchbase> function couchbase_basic_decoder_v1 ] {
+ Function [ <internal:couchbase> function Couchbase\Extension\documentMutateIn ] {
- - Parameters [4] {
- Parameter #0 [ <required> $bytes ]
- Parameter #1 [ <required> $flags ]
- Parameter #2 [ <required> $datatype ]
- Parameter #3 [ <required> $options ]
+ - Parameters [7] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <required> string $bucket ]
+ Parameter #2 [ <required> string $scope ]
+ Parameter #3 [ <required> string $collection ]
+ Parameter #4 [ <required> string $id ]
+ Parameter #5 [ <required> array $specs ]
+ Parameter #6 [ <optional> ?array $options = <default> ]
}
}
- }
-
- - Classes [240] {
- Interface [ <internal:couchbase> interface Couchbase\MutationToken ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
+ Function [ <internal:couchbase> function Couchbase\Extension\documentLookupIn ] {
- - Static methods [0] {
- }
-
- - Properties [0] {
- }
-
- - Methods [4] {
- Method [ <internal:couchbase> abstract public method partitionId ] {
-
- - Parameters [0] {
- }
- - Return [ ?int ]
- }
-
- Method [ <internal:couchbase> abstract public method partitionUuid ] {
-
- - Parameters [0] {
- }
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase> abstract public method sequenceNumber ] {
-
- - Parameters [0] {
- }
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase> abstract public method bucketName ] {
-
- - Parameters [0] {
- }
- - Return [ ?string ]
- }
+ - Parameters [7] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <required> string $bucket ]
+ Parameter #2 [ <required> string $scope ]
+ Parameter #3 [ <required> string $collection ]
+ Parameter #4 [ <required> string $id ]
+ Parameter #5 [ <required> array $specs ]
+ Parameter #6 [ <optional> ?array $options = <default> ]
}
}
+ Function [ <internal:couchbase> function Couchbase\Extension\documentGetMulti ] {
- Class [ <internal:couchbase> class Couchbase\MutationTokenImpl implements Couchbase\MutationToken ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
+ - Parameters [6] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <required> string $bucket ]
+ Parameter #2 [ <required> string $scope ]
+ Parameter #3 [ <required> string $collection ]
+ Parameter #4 [ <required> array $ids ]
+ Parameter #5 [ <optional> ?array $options = <default> ]
}
+ }
+ Function [ <internal:couchbase> function Couchbase\Extension\documentRemoveMulti ] {
- - Properties [4] {
- Property [ private $partition_id = NULL ]
- Property [ private $partition_uuid = NULL ]
- Property [ private $sequence_number = NULL ]
- Property [ private $bucket_name = NULL ]
- }
-
- - Methods [4] {
- Method [ <internal:couchbase, prototype Couchbase\MutationToken> public method partitionId ] {
-
- - Parameters [0] {
- }
- - Return [ ?int ]
- }
-
- Method [ <internal:couchbase, prototype Couchbase\MutationToken> public method partitionUuid ] {
-
- - Parameters [0] {
- }
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, prototype Couchbase\MutationToken> public method sequenceNumber ] {
-
- - Parameters [0] {
- }
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, prototype Couchbase\MutationToken> public method bucketName ] {
-
- - Parameters [0] {
- }
- - Return [ ?string ]
- }
+ - Parameters [6] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <required> string $bucket ]
+ Parameter #2 [ <required> string $scope ]
+ Parameter #3 [ <required> string $collection ]
+ Parameter #4 [ <required> array $entries ]
+ Parameter #5 [ <optional> ?array $options = <default> ]
}
}
+ Function [ <internal:couchbase> function Couchbase\Extension\documentUpsertMulti ] {
- Interface [ <internal:couchbase> interface Couchbase\QueryMetaData ] {
-
- - Constants [0] {
+ - Parameters [6] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <required> string $bucket ]
+ Parameter #2 [ <required> string $scope ]
+ Parameter #3 [ <required> string $collection ]
+ Parameter #4 [ <required> array $entries ]
+ Parameter #5 [ <optional> ?array $options = <default> ]
}
+ }
+ Function [ <internal:couchbase> function Couchbase\Extension\query ] {
- - Static properties [0] {
+ - Parameters [3] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <required> string $statement ]
+ Parameter #2 [ <optional> ?array $options = <default> ]
}
+ }
+ Function [ <internal:couchbase> function Couchbase\Extension\analyticsQuery ] {
- - Static methods [0] {
+ - Parameters [3] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <required> string $statement ]
+ Parameter #2 [ <optional> ?array $options = <default> ]
}
+ }
+ Function [ <internal:couchbase> function Couchbase\Extension\viewQuery ] {
- - Properties [0] {
+ - Parameters [6] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <required> string $bucketName ]
+ Parameter #2 [ <required> string $designDocumentName ]
+ Parameter #3 [ <required> string $viewName ]
+ Parameter #4 [ <required> int $nameSpace ]
+ Parameter #5 [ <optional> ?array $options = <default> ]
}
+ }
+ Function [ <internal:couchbase> function Couchbase\Extension\searchQuery ] {
- - Methods [8] {
- Method [ <internal:couchbase> abstract public method status ] {
-
- - Parameters [0] {
- }
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase> abstract public method requestId ] {
-
- - Parameters [0] {
- }
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase> abstract public method clientContextId ] {
-
- - Parameters [0] {
- }
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase> abstract public method signature ] {
-
- - Parameters [0] {
- }
- - Return [ ?array ]
- }
-
- Method [ <internal:couchbase> abstract public method warnings ] {
-
- - Parameters [0] {
- }
- - Return [ ?array ]
- }
-
- Method [ <internal:couchbase> abstract public method errors ] {
-
- - Parameters [0] {
- }
- - Return [ ?array ]
- }
-
- Method [ <internal:couchbase> abstract public method metrics ] {
-
- - Parameters [0] {
- }
- - Return [ ?array ]
- }
-
- Method [ <internal:couchbase> abstract public method profile ] {
-
- - Parameters [0] {
- }
- - Return [ ?array ]
- }
+ - Parameters [4] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <required> string $indexName ]
+ Parameter #2 [ <required> string $query ]
+ Parameter #3 [ <optional> ?array $options = <default> ]
}
}
+ Function [ <internal:couchbase> function Couchbase\Extension\ping ] {
- Class [ <internal:couchbase> class Couchbase\QueryMetaDataImpl implements Couchbase\QueryMetaData ] {
-
- - Constants [0] {
+ - Parameters [2] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <optional> ?array $options = <default> ]
}
+ }
+ Function [ <internal:couchbase> function Couchbase\Extension\diagnostics ] {
- - Static properties [0] {
+ - Parameters [3] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <required> string $reportId ]
+ Parameter #2 [ <optional> ?array $options = <default> ]
}
+ }
+ Function [ <internal:couchbase> function Couchbase\Extension\createTransactions ] {
- - Static methods [0] {
+ - Parameters [2] {
+ Parameter #0 [ <optional> $connection = <default> ]
+ Parameter #1 [ <optional> ?array $configuration = <default> ]
}
+ - Return [ null ]
+ }
+ Function [ <internal:couchbase> function Couchbase\Extension\createTransactionContext ] {
- - Properties [7] {
- Property [ private $status = NULL ]
- Property [ private $request_id = NULL ]
- Property [ private $client_context_id = NULL ]
- Property [ private $signature = NULL ]
- Property [ private $errors = NULL ]
- Property [ private $warnings = NULL ]
- Property [ private $metrics = NULL ]
+ - Parameters [2] {
+ Parameter #0 [ <optional> $transactions = <default> ]
+ Parameter #1 [ <optional> ?array $configuration = <default> ]
}
+ - Return [ null ]
+ }
+ Function [ <internal:couchbase> function Couchbase\Extension\transactionNewAttempt ] {
- - Methods [8] {
- Method [ <internal:couchbase, prototype Couchbase\QueryMetaData> public method status ] {
-
- - Parameters [0] {
- }
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, prototype Couchbase\QueryMetaData> public method requestId ] {
-
- - Parameters [0] {
- }
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, prototype Couchbase\QueryMetaData> public method clientContextId ] {
-
- - Parameters [0] {
- }
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, prototype Couchbase\QueryMetaData> public method signature ] {
-
- - Parameters [0] {
- }
- - Return [ ?array ]
- }
-
- Method [ <internal:couchbase, prototype Couchbase\QueryMetaData> public method errors ] {
-
- - Parameters [0] {
- }
- - Return [ ?array ]
- }
-
- Method [ <internal:couchbase, prototype Couchbase\QueryMetaData> public method warnings ] {
-
- - Parameters [0] {
- }
- - Return [ ?array ]
- }
-
- Method [ <internal:couchbase, prototype Couchbase\QueryMetaData> public method metrics ] {
-
- - Parameters [0] {
- }
- - Return [ ?array ]
- }
-
- Method [ <internal:couchbase, prototype Couchbase\QueryMetaData> public method profile ] {
-
- - Parameters [0] {
- }
- - Return [ ?array ]
- }
+ - Parameters [1] {
+ Parameter #0 [ <required> $transactions ]
}
}
+ Function [ <internal:couchbase> function Couchbase\Extension\transactionCommit ] {
- Interface [ <internal:couchbase> interface Couchbase\SearchMetaData ] {
-
- - Constants [0] {
+ - Parameters [1] {
+ Parameter #0 [ <required> $transactions ]
}
+ }
+ Function [ <internal:couchbase> function Couchbase\Extension\transactionRollback ] {
- - Static properties [0] {
+ - Parameters [1] {
+ Parameter #0 [ <required> $transactions ]
}
+ }
+ Function [ <internal:couchbase> function Couchbase\Extension\transactionGet ] {
- - Static methods [0] {
+ - Parameters [5] {
+ Parameter #0 [ <required> $transactions ]
+ Parameter #1 [ <required> string $bucketName ]
+ Parameter #2 [ <required> string $scopeName ]
+ Parameter #3 [ <required> string $collectionName ]
+ Parameter #4 [ <required> string $id ]
}
+ }
+ Function [ <internal:couchbase> function Couchbase\Extension\transactionInsert ] {
- - Properties [0] {
+ - Parameters [6] {
+ Parameter #0 [ <required> $transactions ]
+ Parameter #1 [ <required> string $bucketName ]
+ Parameter #2 [ <required> string $scopeName ]
+ Parameter #3 [ <required> string $collectionName ]
+ Parameter #4 [ <required> string $id ]
+ Parameter #5 [ <required> string $value ]
}
+ }
+ Function [ <internal:couchbase> function Couchbase\Extension\transactionReplace ] {
- - Methods [6] {
- Method [ <internal:couchbase> abstract public method successCount ] {
-
- - Parameters [0] {
- }
- - Return [ ?int ]
- }
-
- Method [ <internal:couchbase> abstract public method errorCount ] {
-
- - Parameters [0] {
- }
- - Return [ ?int ]
- }
-
- Method [ <internal:couchbase> abstract public method took ] {
-
- - Parameters [0] {
- }
- - Return [ ?int ]
- }
-
- Method [ <internal:couchbase> abstract public method totalHits ] {
-
- - Parameters [0] {
- }
- - Return [ ?int ]
- }
-
- Method [ <internal:couchbase> abstract public method maxScore ] {
-
- - Parameters [0] {
- }
- - Return [ ?float ]
- }
-
- Method [ <internal:couchbase> abstract public method metrics ] {
-
- - Parameters [0] {
- }
- - Return [ ?array ]
- }
+ - Parameters [3] {
+ Parameter #0 [ <required> $transactions ]
+ Parameter #1 [ <required> array $document ]
+ Parameter #2 [ <required> string $value ]
}
}
+ Function [ <internal:couchbase> function Couchbase\Extension\transactionRemove ] {
- Class [ <internal:couchbase> class Couchbase\SearchMetaDataImpl implements Couchbase\SearchMetaData ] {
-
- - Constants [0] {
+ - Parameters [2] {
+ Parameter #0 [ <required> $transactions ]
+ Parameter #1 [ <required> array $document ]
}
+ }
+ Function [ <internal:couchbase> function Couchbase\Extension\transactionQuery ] {
- - Static properties [0] {
+ - Parameters [3] {
+ Parameter #0 [ <required> $transactions ]
+ Parameter #1 [ <required> string $statement ]
+ Parameter #2 [ <optional> ?array $options = <default> ]
}
+ }
+ Function [ <internal:couchbase> function Couchbase\Extension\searchIndexUpsert ] {
- - Static methods [0] {
+ - Parameters [3] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <required> array $index ]
+ Parameter #2 [ <optional> ?array $options = <default> ]
}
+ }
+ Function [ <internal:couchbase> function Couchbase\Extension\viewIndexUpsert ] {
- - Properties [7] {
- Property [ private $success_count = NULL ]
- Property [ private $error_count = NULL ]
- Property [ private $took = NULL ]
- Property [ private $total_hits = NULL ]
- Property [ private $max_score = NULL ]
- Property [ private $metrics = NULL ]
- Property [ private $status = NULL ]
+ - Parameters [5] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <required> string $bucketName ]
+ Parameter #2 [ <required> array $index ]
+ Parameter #3 [ <required> int $nameSpace ]
+ Parameter #4 [ <optional> ?array $options = <default> ]
}
+ }
+ Function [ <internal:couchbase> function Couchbase\Extension\bucketCreate ] {
- - Methods [6] {
- Method [ <internal:couchbase, prototype Couchbase\SearchMetaData> public method successCount ] {
-
- - Parameters [0] {
- }
- - Return [ ?int ]
- }
-
- Method [ <internal:couchbase, prototype Couchbase\SearchMetaData> public method errorCount ] {
-
- - Parameters [0] {
- }
- - Return [ ?int ]
- }
-
- Method [ <internal:couchbase, prototype Couchbase\SearchMetaData> public method took ] {
-
- - Parameters [0] {
- }
- - Return [ ?int ]
- }
-
- Method [ <internal:couchbase, prototype Couchbase\SearchMetaData> public method totalHits ] {
-
- - Parameters [0] {
- }
- - Return [ ?int ]
- }
-
- Method [ <internal:couchbase, prototype Couchbase\SearchMetaData> public method maxScore ] {
-
- - Parameters [0] {
- }
- - Return [ ?float ]
- }
-
- Method [ <internal:couchbase, prototype Couchbase\SearchMetaData> public method metrics ] {
-
- - Parameters [0] {
- }
- - Return [ ?array ]
- }
+ - Parameters [3] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <required> array $bucketSettings ]
+ Parameter #2 [ <optional> ?array $options = <default> ]
}
}
+ Function [ <internal:couchbase> function Couchbase\Extension\bucketUpdate ] {
- Interface [ <internal:couchbase> interface Couchbase\ViewMetaData ] {
-
- - Constants [0] {
+ - Parameters [3] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <required> array $bucketSettings ]
+ Parameter #2 [ <optional> ?array $options = <default> ]
}
+ }
+ Function [ <internal:couchbase> function Couchbase\Extension\bucketGet ] {
- - Static properties [0] {
+ - Parameters [3] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <required> string $name ]
+ Parameter #2 [ <optional> ?array $options = <default> ]
}
+ }
+ Function [ <internal:couchbase> function Couchbase\Extension\bucketGetAll ] {
- - Static methods [0] {
+ - Parameters [2] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <optional> ?array $options = <default> ]
}
+ }
+ Function [ <internal:couchbase> function Couchbase\Extension\bucketDrop ] {
- - Properties [0] {
+ - Parameters [3] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <required> string $name ]
+ Parameter #2 [ <optional> ?array $options = <default> ]
}
+ }
+ Function [ <internal:couchbase> function Couchbase\Extension\bucketFlush ] {
- - Methods [2] {
- Method [ <internal:couchbase> abstract public method totalRows ] {
-
- - Parameters [0] {
- }
- - Return [ ?int ]
- }
-
- Method [ <internal:couchbase> abstract public method debug ] {
-
- - Parameters [0] {
- }
- - Return [ ?array ]
- }
+ - Parameters [3] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <required> string $name ]
+ Parameter #2 [ <optional> ?array $options = <default> ]
}
}
+ Function [ <internal:couchbase> function Couchbase\Extension\userUpsert ] {
- Class [ <internal:couchbase> class Couchbase\ViewMetaDataImpl implements Couchbase\ViewMetaData ] {
-
- - Constants [0] {
+ - Parameters [3] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <required> array $user ]
+ Parameter #2 [ <optional> ?array $options = <default> ]
}
+ }
+ Function [ <internal:couchbase> function Couchbase\Extension\userGet ] {
- - Static properties [0] {
+ - Parameters [3] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <required> string $name ]
+ Parameter #2 [ <optional> ?array $options = <default> ]
}
+ }
+ Function [ <internal:couchbase> function Couchbase\Extension\userGetAll ] {
- - Static methods [0] {
+ - Parameters [2] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <optional> ?array $options = <default> ]
}
+ }
+ Function [ <internal:couchbase> function Couchbase\Extension\userDrop ] {
- - Properties [2] {
- Property [ private $total_rows = NULL ]
- Property [ private $debug = NULL ]
+ - Parameters [3] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <required> string $name ]
+ Parameter #2 [ <optional> ?array $options = <default> ]
}
+ }
+ Function [ <internal:couchbase> function Couchbase\Extension\groupUpsert ] {
- - Methods [2] {
- Method [ <internal:couchbase, prototype Couchbase\ViewMetaData> public method totalRows ] {
-
- - Parameters [0] {
- }
- - Return [ ?int ]
- }
-
- Method [ <internal:couchbase, prototype Couchbase\ViewMetaData> public method debug ] {
-
- - Parameters [0] {
- }
- - Return [ ?array ]
- }
+ - Parameters [3] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <required> array $group ]
+ Parameter #2 [ <optional> ?array $options = <default> ]
}
}
+ Function [ <internal:couchbase> function Couchbase\Extension\groupGet ] {
- Interface [ <internal:couchbase> interface Couchbase\Result ] {
-
- - Constants [0] {
+ - Parameters [3] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <required> string $name ]
+ Parameter #2 [ <optional> ?array $options = <default> ]
}
+ }
+ Function [ <internal:couchbase> function Couchbase\Extension\groupGetAll ] {
- - Static properties [0] {
+ - Parameters [2] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <optional> ?array $options = <default> ]
}
+ }
+ Function [ <internal:couchbase> function Couchbase\Extension\groupDrop ] {
- - Static methods [0] {
+ - Parameters [3] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <required> string $name ]
+ Parameter #2 [ <optional> ?array $options = <default> ]
}
+ }
+ Function [ <internal:couchbase> function Couchbase\Extension\roleGetAll ] {
- - Properties [0] {
+ - Parameters [2] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <optional> ?array $options = <default> ]
}
+ }
+ Function [ <internal:couchbase> function Couchbase\Extension\queryIndexGetAll ] {
- - Methods [1] {
- Method [ <internal:couchbase> abstract public method cas ] {
-
- - Parameters [0] {
- }
- - Return [ ?string ]
- }
+ - Parameters [3] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <required> string $bucketName ]
+ Parameter #2 [ <optional> ?array $options = <default> ]
}
}
+ Function [ <internal:couchbase> function Couchbase\Extension\queryIndexCreate ] {
- Class [ <internal:couchbase> class Couchbase\ResultImpl implements Couchbase\Result ] {
-
- - Constants [0] {
+ - Parameters [5] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <required> string $bucketName ]
+ Parameter #2 [ <required> string $indexName ]
+ Parameter #3 [ <required> array $fields ]
+ Parameter #4 [ <optional> ?array $options = <default> ]
}
+ }
+ Function [ <internal:couchbase> function Couchbase\Extension\queryIndexCreatePrimary ] {
- - Static properties [0] {
+ - Parameters [3] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <required> string $bucketName ]
+ Parameter #2 [ <optional> ?array $options = <default> ]
}
+ }
+ Function [ <internal:couchbase> function Couchbase\Extension\queryIndexDrop ] {
- - Static methods [0] {
+ - Parameters [4] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <required> string $bucketName ]
+ Parameter #2 [ <required> string $indexName ]
+ Parameter #3 [ <optional> ?array $options = <default> ]
}
+ }
+ Function [ <internal:couchbase> function Couchbase\Extension\queryIndexDropPrimary ] {
- - Properties [6] {
- Property [ private $cas = NULL ]
- Property [ private $expiry = NULL ]
- Property [ private $key = NULL ]
- Property [ private $status = NULL ]
- Property [ private $err_ctx = NULL ]
- Property [ private $err_ref = NULL ]
+ - Parameters [3] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <required> string $bucketName ]
+ Parameter #2 [ <optional> ?array $options = <default> ]
}
+ }
+ Function [ <internal:couchbase> function Couchbase\Extension\queryIndexBuildDeferred ] {
- - Methods [1] {
- Method [ <internal:couchbase, prototype Couchbase\Result> public method cas ] {
-
- - Parameters [0] {
- }
- - Return [ ?string ]
- }
+ - Parameters [3] {
+ Parameter #0 [ <required> $connection ]
+ Parameter #1 [ <required> string $bucketName ]
+ Parameter #2 [ <optional> ?array $options = <default> ]
}
}
+ }
- Interface [ <internal:couchbase> interface Couchbase\GetResult extends Couchbase\Result ] {
+ - Classes [73] {
+ Class [ <internal:couchbase> class Couchbase\Exception\CouchbaseException extends Exception implements Throwable, Stringable ] {
- Constants [0] {
}
@@ -854,138 +602,95 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [0] {
+ - Properties [5] {
+ Property [ protected $message = '' ]
+ Property [ protected $code = 0 ]
+ Property [ protected $file = NULL ]
+ Property [ protected $line = NULL ]
+ Property [ private $context = NULL ]
}
- - Methods [4] {
- Method [ <internal:couchbase> abstract public method content ] {
-
- - Parameters [0] {
- }
- }
-
- Method [ <internal:couchbase> abstract public method expiryTime ] {
+ - Methods [11] {
+ Method [ <internal:couchbase> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?DateTimeInterface ]
+ - Return [ array ]
}
- Method [ <internal:couchbase> abstract public method error ] {
+ Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
- - Parameters [0] {
+ - Parameters [3] {
+ Parameter #0 [ <optional> string $message = "" ]
+ Parameter #1 [ <optional> int $code = 0 ]
+ Parameter #2 [ <optional> ?Throwable $previous = null ]
}
- - Return [ ?Exception ]
}
- Method [ <internal:couchbase, inherits Couchbase\Result> abstract public method cas ] {
+ Method [ <internal:Core, inherits Exception> public method __wakeup ] {
- Parameters [0] {
}
- - Return [ ?string ]
}
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\GetResultImpl implements Couchbase\GetResult, Couchbase\Result ] {
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [10] {
- Property [ private $cas = NULL ]
- Property [ private $data = NULL ]
- Property [ private $expiry = NULL ]
- Property [ private $key = NULL ]
- Property [ private $status = NULL ]
- Property [ private $err_ctx = NULL ]
- Property [ private $err_ref = NULL ]
- Property [ private $flags = NULL ]
- Property [ private $datatype = NULL ]
- Property [ private $decoder = NULL ]
- }
-
- - Methods [5] {
- Method [ <internal:couchbase, prototype Couchbase\Result> public method cas ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {
- Parameters [0] {
}
- - Return [ ?string ]
+ - Return [ string ]
}
- Method [ <internal, deprecated:couchbase> public method expiry ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {
- Parameters [0] {
}
- - Return [ ?int ]
}
- Method [ <internal:couchbase, prototype Couchbase\GetResult> public method expiryTime ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {
- Parameters [0] {
}
- - Return [ ?DateTimeInterface ]
+ - Return [ string ]
}
- Method [ <internal:couchbase, prototype Couchbase\GetResult> public method content ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {
- Parameters [0] {
}
+ - Return [ int ]
}
- Method [ <internal:couchbase, prototype Couchbase\GetResult> public method error ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {
- Parameters [0] {
}
- - Return [ ?Exception ]
+ - Return [ array ]
}
- }
- }
-
- Interface [ <internal:couchbase> interface Couchbase\GetReplicaResult extends Couchbase\Result ] {
-
- - Constants [0] {
- }
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [0] {
- }
-
- - Methods [3] {
- Method [ <internal:couchbase> abstract public method content ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {
- Parameters [0] {
}
+ - Return [ ?Throwable ]
}
- Method [ <internal:couchbase> abstract public method isReplica ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {
- Parameters [0] {
}
- - Return [ bool ]
+ - Return [ string ]
}
- Method [ <internal:couchbase, inherits Couchbase\Result> abstract public method cas ] {
+ Method [ <internal:Core, inherits Exception, prototype Stringable> public method __toString ] {
- Parameters [0] {
}
- - Return [ ?string ]
+ - Return [ string ]
}
}
}
- Class [ <internal:couchbase> class Couchbase\GetReplicaResultImpl implements Couchbase\GetReplicaResult, Couchbase\Result ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\TimeoutException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -996,162 +701,94 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [8] {
- Property [ private $cas = NULL ]
- Property [ private $data = NULL ]
- Property [ private $expiry = NULL ]
- Property [ private $key = NULL ]
- Property [ private $status = NULL ]
- Property [ private $err_ctx = NULL ]
- Property [ private $err_ref = NULL ]
- Property [ private $is_replica = NULL ]
+ - Properties [4] {
+ Property [ protected $message = '' ]
+ Property [ protected $code = 0 ]
+ Property [ protected $file = NULL ]
+ Property [ protected $line = NULL ]
}
- - Methods [4] {
- Method [ <internal:couchbase, prototype Couchbase\Result> public method cas ] {
-
- - Parameters [0] {
- }
- - Return [ ?string ]
- }
-
- Method [ <internal, deprecated:couchbase> public method expiry ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?int ]
+ - Return [ array ]
}
- Method [ <internal:couchbase, prototype Couchbase\GetReplicaResult> public method content ] {
+ Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
- - Parameters [0] {
+ - Parameters [3] {
+ Parameter #0 [ <optional> string $message = "" ]
+ Parameter #1 [ <optional> int $code = 0 ]
+ Parameter #2 [ <optional> ?Throwable $previous = null ]
}
}
- Method [ <internal:couchbase, prototype Couchbase\GetReplicaResult> public method isReplica ] {
+ Method [ <internal:Core, inherits Exception> public method __wakeup ] {
- Parameters [0] {
}
- - Return [ bool ]
}
- }
- }
-
- Interface [ <internal:couchbase> interface Couchbase\ExistsResult extends Couchbase\Result ] {
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [0] {
- }
-
- - Methods [2] {
- Method [ <internal:couchbase> abstract public method exists ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {
- Parameters [0] {
}
- - Return [ bool ]
+ - Return [ string ]
}
- Method [ <internal:couchbase, inherits Couchbase\Result> abstract public method cas ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {
- Parameters [0] {
}
- - Return [ ?string ]
}
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\ExistsResultImpl implements Couchbase\ExistsResult, Couchbase\Result ] {
-
- - Constants [0] {
- }
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [7] {
- Property [ private $cas = NULL ]
- Property [ private $expiry = NULL ]
- Property [ private $key = NULL ]
- Property [ private $status = NULL ]
- Property [ private $err_ctx = NULL ]
- Property [ private $err_ref = NULL ]
- Property [ private $is_found = NULL ]
- }
-
- - Methods [3] {
- Method [ <internal:couchbase, prototype Couchbase\Result> public method cas ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {
- Parameters [0] {
}
- - Return [ ?string ]
+ - Return [ string ]
}
- Method [ <internal:couchbase> public method expiry ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {
- Parameters [0] {
}
- - Return [ ?int ]
+ - Return [ int ]
}
- Method [ <internal:couchbase, prototype Couchbase\ExistsResult> public method exists ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {
- Parameters [0] {
}
- - Return [ bool ]
+ - Return [ array ]
}
- }
- }
-
- Interface [ <internal:couchbase> interface Couchbase\MutationResult extends Couchbase\Result ] {
-
- - Constants [0] {
- }
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [0] {
- }
-
- - Methods [3] {
- Method [ <internal:couchbase> abstract public method mutationToken ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {
- Parameters [0] {
}
- - Return [ ?Couchbase\MutationToken ]
+ - Return [ ?Throwable ]
}
- Method [ <internal:couchbase> abstract public method error ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {
- Parameters [0] {
}
- - Return [ ?Exception ]
+ - Return [ string ]
}
- Method [ <internal:couchbase, inherits Couchbase\Result> abstract public method cas ] {
+ Method [ <internal:Core, inherits Exception, prototype Stringable> public method __toString ] {
- Parameters [0] {
}
- - Return [ ?string ]
+ - Return [ string ]
}
}
}
- Class [ <internal:couchbase> class Couchbase\MutationResultImpl implements Couchbase\MutationResult, Couchbase\Result ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\UnambiguousTimeoutException extends Couchbase\Exception\TimeoutException implements Throwable, Stringable ] {
- Constants [0] {
}
@@ -1162,148 +799,94 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [7] {
- Property [ private $cas = NULL ]
- Property [ private $expiry = NULL ]
- Property [ private $key = NULL ]
- Property [ private $status = NULL ]
- Property [ private $err_ctx = NULL ]
- Property [ private $err_ref = NULL ]
- Property [ private $mutation_token = NULL ]
+ - Properties [4] {
+ Property [ protected $message = '' ]
+ Property [ protected $code = 0 ]
+ Property [ protected $file = NULL ]
+ Property [ protected $line = NULL ]
}
- - Methods [4] {
- Method [ <internal:couchbase, prototype Couchbase\Result> public method cas ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase> public method expiry ] {
-
- - Parameters [0] {
- }
- - Return [ ?int ]
+ - Return [ array ]
}
- Method [ <internal:couchbase, prototype Couchbase\MutationResult> public method mutationToken ] {
+ Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
- - Parameters [0] {
+ - Parameters [3] {
+ Parameter #0 [ <optional> string $message = "" ]
+ Parameter #1 [ <optional> int $code = 0 ]
+ Parameter #2 [ <optional> ?Throwable $previous = null ]
}
- - Return [ ?Couchbase\MutationToken ]
}
- Method [ <internal:couchbase, prototype Couchbase\MutationResult> public method error ] {
+ Method [ <internal:Core, inherits Exception> public method __wakeup ] {
- Parameters [0] {
}
- - Return [ ?Exception ]
}
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\StoreResultImpl implements Couchbase\MutationResult, Couchbase\Result ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
- - Static methods [0] {
- }
-
- - Properties [10] {
- Property [ private $cas = NULL ]
- Property [ private $expiry = NULL ]
- Property [ private $key = NULL ]
- Property [ private $status = NULL ]
- Property [ private $err_ctx = NULL ]
- Property [ private $err_ref = NULL ]
- Property [ private $mutation_token = NULL ]
- Property [ private $is_stored = NULL ]
- Property [ private $num_persisted = NULL ]
- Property [ private $num_replicated = NULL ]
- }
-
- - Methods [4] {
- Method [ <internal:couchbase, prototype Couchbase\Result> public method cas ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {
- Parameters [0] {
}
- - Return [ ?string ]
+ - Return [ string ]
}
- Method [ <internal:couchbase> public method expiry ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {
- Parameters [0] {
}
- - Return [ ?int ]
}
- Method [ <internal:couchbase, prototype Couchbase\MutationResult> public method mutationToken ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {
- Parameters [0] {
}
- - Return [ ?Couchbase\MutationToken ]
+ - Return [ string ]
}
- Method [ <internal:couchbase, prototype Couchbase\MutationResult> public method error ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {
- Parameters [0] {
}
- - Return [ ?Exception ]
+ - Return [ int ]
}
- }
- }
-
- Interface [ <internal:couchbase> interface Couchbase\CounterResult extends Couchbase\MutationResult, Couchbase\Result ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [0] {
- }
- - Methods [4] {
- Method [ <internal:couchbase> abstract public method content ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {
- Parameters [0] {
}
- - Return [ int ]
+ - Return [ array ]
}
- Method [ <internal:couchbase, inherits Couchbase\MutationResult> abstract public method mutationToken ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {
- Parameters [0] {
}
- - Return [ ?Couchbase\MutationToken ]
+ - Return [ ?Throwable ]
}
- Method [ <internal:couchbase, inherits Couchbase\MutationResult> abstract public method error ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {
- Parameters [0] {
}
- - Return [ ?Exception ]
+ - Return [ string ]
}
- Method [ <internal:couchbase, inherits Couchbase\Result> abstract public method cas ] {
+ Method [ <internal:Core, inherits Exception, prototype Stringable> public method __toString ] {
- Parameters [0] {
}
- - Return [ ?string ]
+ - Return [ string ]
}
}
}
- Class [ <internal:couchbase> class Couchbase\CounterResultImpl implements Couchbase\CounterResult, Couchbase\Result, Couchbase\MutationResult ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\AmbiguousTimeoutException extends Couchbase\Exception\TimeoutException implements Throwable, Stringable ] {
- Constants [0] {
}
@@ -1314,198 +897,94 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [8] {
- Property [ private $cas = NULL ]
- Property [ private $expiry = NULL ]
- Property [ private $key = NULL ]
- Property [ private $status = NULL ]
- Property [ private $err_ctx = NULL ]
- Property [ private $err_ref = NULL ]
- Property [ private $mutation_token = NULL ]
- Property [ private $content = NULL ]
+ - Properties [4] {
+ Property [ protected $message = '' ]
+ Property [ protected $code = 0 ]
+ Property [ protected $file = NULL ]
+ Property [ protected $line = NULL ]
}
- - Methods [5] {
- Method [ <internal:couchbase, prototype Couchbase\Result> public method cas ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?string ]
+ - Return [ array ]
}
- Method [ <internal:couchbase> public method expiry ] {
+ Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
- - Parameters [0] {
+ - Parameters [3] {
+ Parameter #0 [ <optional> string $message = "" ]
+ Parameter #1 [ <optional> int $code = 0 ]
+ Parameter #2 [ <optional> ?Throwable $previous = null ]
}
- - Return [ ?int ]
}
- Method [ <internal:couchbase, prototype Couchbase\MutationResult> public method mutationToken ] {
+ Method [ <internal:Core, inherits Exception> public method __wakeup ] {
- Parameters [0] {
}
- - Return [ ?Couchbase\MutationToken ]
}
- Method [ <internal:couchbase, prototype Couchbase\MutationResult> public method error ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {
- Parameters [0] {
}
- - Return [ ?Exception ]
+ - Return [ string ]
}
- Method [ <internal:couchbase, prototype Couchbase\CounterResult> public method content ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {
- Parameters [0] {
}
- - Return [ int ]
}
- }
- }
-
- Interface [ <internal:couchbase> interface Couchbase\LookupInResult extends Couchbase\Result ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
- - Static methods [0] {
- }
-
- - Properties [0] {
- }
-
- - Methods [5] {
- Method [ <internal:couchbase> abstract public method expiryTime ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {
- Parameters [0] {
}
- - Return [ ?DateTimeInterface ]
- }
-
- Method [ <internal:couchbase> abstract public method content ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $index ]
- }
- }
-
- Method [ <internal:couchbase> abstract public method exists ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $index ]
- }
- - Return [ bool ]
+ - Return [ string ]
}
- Method [ <internal:couchbase> abstract public method status ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {
- - Parameters [1] {
- Parameter #0 [ <required> int $index ]
+ - Parameters [0] {
}
- Return [ int ]
}
- Method [ <internal:couchbase, inherits Couchbase\Result> abstract public method cas ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {
- Parameters [0] {
}
- - Return [ ?string ]
+ - Return [ array ]
}
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\LookupInResultImpl implements Couchbase\LookupInResult, Couchbase\Result ] {
-
- - Constants [0] {
- }
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [7] {
- Property [ private $cas = NULL ]
- Property [ private $expiry = NULL ]
- Property [ private $key = NULL ]
- Property [ private $status = NULL ]
- Property [ private $err_ctx = NULL ]
- Property [ private $err_ref = NULL ]
- Property [ private $data = NULL ]
- }
-
- - Methods [6] {
- Method [ <internal:couchbase, prototype Couchbase\Result> public method cas ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {
- Parameters [0] {
}
- - Return [ ?string ]
+ - Return [ ?Throwable ]
}
- Method [ <internal, deprecated:couchbase> public method expiry ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {
- Parameters [0] {
}
- - Return [ ?int ]
+ - Return [ string ]
}
- Method [ <internal:couchbase, prototype Couchbase\LookupInResult> public method expiryTime ] {
+ Method [ <internal:Core, inherits Exception, prototype Stringable> public method __toString ] {
- Parameters [0] {
}
- - Return [ ?DateTimeInterface ]
- }
-
- Method [ <internal:couchbase, prototype Couchbase\LookupInResult> public method content ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $index ]
- }
- }
-
- Method [ <internal:couchbase, prototype Couchbase\LookupInResult> public method exists ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $index ]
- }
- - Return [ bool ]
- }
-
- Method [ <internal:couchbase, prototype Couchbase\LookupInResult> public method status ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $index ]
- }
- - Return [ int ]
+ - Return [ string ]
}
}
}
- Class [ <internal:couchbase> class Couchbase\LookupInResultEntry ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [2] {
- Property [ private $code = NULL ]
- Property [ private $value = NULL ]
- }
-
- - Methods [0] {
- }
- }
-
- Interface [ <internal:couchbase> interface Couchbase\MutateInResult extends Couchbase\MutationResult, Couchbase\Result ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\AuthenticationFailureException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -1516,193 +995,94 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [0] {
+ - Properties [4] {
+ Property [ protected $message = '' ]
+ Property [ protected $code = 0 ]
+ Property [ protected $file = NULL ]
+ Property [ protected $line = NULL ]
}
- - Methods [4] {
- Method [ <internal:couchbase> abstract public method content ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $index ]
- }
- }
-
- Method [ <internal:couchbase, inherits Couchbase\MutationResult> abstract public method mutationToken ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?Couchbase\MutationToken ]
+ - Return [ array ]
}
- Method [ <internal:couchbase, inherits Couchbase\MutationResult> abstract public method error ] {
+ Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
- - Parameters [0] {
+ - Parameters [3] {
+ Parameter #0 [ <optional> string $message = "" ]
+ Parameter #1 [ <optional> int $code = 0 ]
+ Parameter #2 [ <optional> ?Throwable $previous = null ]
}
- - Return [ ?Exception ]
}
- Method [ <internal:couchbase, inherits Couchbase\Result> abstract public method cas ] {
+ Method [ <internal:Core, inherits Exception> public method __wakeup ] {
- Parameters [0] {
}
- - Return [ ?string ]
}
- }
- }
- Class [ <internal:couchbase> class Couchbase\MutateInResultImpl implements Couchbase\MutateInResult, Couchbase\Result, Couchbase\MutationResult ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [8] {
- Property [ private $cas = NULL ]
- Property [ private $expiry = NULL ]
- Property [ private $key = NULL ]
- Property [ private $status = NULL ]
- Property [ private $err_ctx = NULL ]
- Property [ private $err_ref = NULL ]
- Property [ private $mutation_token = NULL ]
- Property [ private $data = NULL ]
- }
-
- - Methods [6] {
- Method [ <internal:couchbase, prototype Couchbase\Result> public method cas ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {
- Parameters [0] {
}
- - Return [ ?string ]
+ - Return [ string ]
}
- Method [ <internal:couchbase> public method expiry ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {
- Parameters [0] {
}
- - Return [ ?int ]
}
- Method [ <internal:couchbase, prototype Couchbase\MutationResult> public method mutationToken ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {
- Parameters [0] {
}
- - Return [ ?Couchbase\MutationToken ]
- }
-
- Method [ <internal:couchbase, prototype Couchbase\MutateInResult> public method content ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $index ]
- }
- }
-
- Method [ <internal:couchbase> public method status ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $index ]
- }
+ - Return [ string ]
}
- Method [ <internal:couchbase, prototype Couchbase\MutationResult> public method error ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {
- Parameters [0] {
}
- - Return [ ?Exception ]
+ - Return [ int ]
}
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\MutateInResultEntry ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
- - Static methods [0] {
- }
-
- - Properties [2] {
- Property [ private $code = NULL ]
- Property [ private $value = NULL ]
- }
-
- - Methods [0] {
- }
- }
-
- Interface [ <internal:couchbase> interface Couchbase\QueryResult ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [0] {
- }
-
- - Methods [2] {
- Method [ <internal:couchbase> abstract public method metaData ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {
- Parameters [0] {
}
- - Return [ ?Couchbase\QueryMetaData ]
+ - Return [ array ]
}
- Method [ <internal:couchbase> abstract public method rows ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {
- Parameters [0] {
}
- - Return [ ?array ]
+ - Return [ ?Throwable ]
}
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\QueryResultImpl implements Couchbase\QueryResult ] {
-
- - Constants [0] {
- }
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [3] {
- Property [ private $status = NULL ]
- Property [ private $meta = NULL ]
- Property [ private $rows = NULL ]
- }
-
- - Methods [2] {
- Method [ <internal:couchbase, prototype Couchbase\QueryResult> public method metaData ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {
- Parameters [0] {
}
- - Return [ ?Couchbase\QueryMetaData ]
+ - Return [ string ]
}
- Method [ <internal:couchbase, prototype Couchbase\QueryResult> public method rows ] {
+ Method [ <internal:Core, inherits Exception, prototype Stringable> public method __toString ] {
- Parameters [0] {
}
- - Return [ ?array ]
+ - Return [ string ]
}
}
}
- Interface [ <internal:couchbase> interface Couchbase\AnalyticsResult ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\BucketExistsException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -1713,127 +1093,94 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [0] {
+ - Properties [4] {
+ Property [ protected $message = '' ]
+ Property [ protected $code = 0 ]
+ Property [ protected $file = NULL ]
+ Property [ protected $line = NULL ]
}
- - Methods [2] {
- Method [ <internal:couchbase> abstract public method metaData ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?Couchbase\QueryMetaData ]
+ - Return [ array ]
}
- Method [ <internal:couchbase> abstract public method rows ] {
+ Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
- - Parameters [0] {
+ - Parameters [3] {
+ Parameter #0 [ <optional> string $message = "" ]
+ Parameter #1 [ <optional> int $code = 0 ]
+ Parameter #2 [ <optional> ?Throwable $previous = null ]
}
- - Return [ ?array ]
}
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\AnalyticsResultImpl implements Couchbase\AnalyticsResult ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
- - Properties [3] {
- Property [ private $status = NULL ]
- Property [ private $meta = NULL ]
- Property [ private $rows = NULL ]
- }
-
- - Methods [2] {
- Method [ <internal:couchbase, prototype Couchbase\AnalyticsResult> public method metaData ] {
+ Method [ <internal:Core, inherits Exception> public method __wakeup ] {
- Parameters [0] {
}
- - Return [ ?Couchbase\QueryMetaData ]
}
- Method [ <internal:couchbase, prototype Couchbase\AnalyticsResult> public method rows ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {
- Parameters [0] {
}
- - Return [ ?array ]
+ - Return [ string ]
}
- }
- }
-
- Interface [ <internal:couchbase> interface Couchbase\SearchFacetResult ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
- - Properties [0] {
- }
-
- - Methods [7] {
- Method [ <internal:couchbase> abstract public method field ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {
- Parameters [0] {
}
- - Return [ string ]
}
- Method [ <internal:couchbase> abstract public method total ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {
- Parameters [0] {
}
- - Return [ int ]
+ - Return [ string ]
}
- Method [ <internal:couchbase> abstract public method missing ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {
- Parameters [0] {
}
- Return [ int ]
}
- Method [ <internal:couchbase> abstract public method other ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {
- Parameters [0] {
}
- - Return [ int ]
+ - Return [ array ]
}
- Method [ <internal:couchbase> abstract public method terms ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {
- Parameters [0] {
}
- - Return [ ?array ]
+ - Return [ ?Throwable ]
}
- Method [ <internal:couchbase> abstract public method numericRanges ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {
- Parameters [0] {
}
- - Return [ ?array ]
+ - Return [ string ]
}
- Method [ <internal:couchbase> abstract public method dateRanges ] {
+ Method [ <internal:Core, inherits Exception, prototype Stringable> public method __toString ] {
- Parameters [0] {
}
- - Return [ ?array ]
+ - Return [ string ]
}
}
}
- Class [ <internal:couchbase> class Couchbase\SearchFacetResultImpl implements Couchbase\SearchFacetResult ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\BucketNotFlushableException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -1844,177 +1191,94 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [8] {
- Property [ private $name = NULL ]
- Property [ private $field = NULL ]
- Property [ private $total = 0 ]
- Property [ private $missing = 0 ]
- Property [ private $other = 0 ]
- Property [ private $terms = NULL ]
- Property [ private $numeric_ranges = NULL ]
- Property [ private $date_ranges = NULL ]
+ - Properties [4] {
+ Property [ protected $message = '' ]
+ Property [ protected $code = 0 ]
+ Property [ protected $file = NULL ]
+ Property [ protected $line = NULL ]
}
- - Methods [7] {
- Method [ <internal:couchbase, prototype Couchbase\SearchFacetResult> public method field ] {
-
- - Parameters [0] {
- }
- - Return [ string ]
- }
-
- Method [ <internal:couchbase, prototype Couchbase\SearchFacetResult> public method total ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ int ]
- }
-
- Method [ <internal:couchbase, prototype Couchbase\SearchFacetResult> public method missing ] {
-
- - Parameters [0] {
- }
- - Return [ int ]
- }
-
- Method [ <internal:couchbase, prototype Couchbase\SearchFacetResult> public method other ] {
-
- - Parameters [0] {
- }
- - Return [ int ]
- }
-
- Method [ <internal:couchbase, prototype Couchbase\SearchFacetResult> public method terms ] {
-
- - Parameters [0] {
- }
- - Return [ ?array ]
+ - Return [ array ]
}
- Method [ <internal:couchbase, prototype Couchbase\SearchFacetResult> public method numericRanges ] {
+ Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
- - Parameters [0] {
+ - Parameters [3] {
+ Parameter #0 [ <optional> string $message = "" ]
+ Parameter #1 [ <optional> int $code = 0 ]
+ Parameter #2 [ <optional> ?Throwable $previous = null ]
}
- - Return [ ?array ]
}
- Method [ <internal:couchbase, prototype Couchbase\SearchFacetResult> public method dateRanges ] {
+ Method [ <internal:Core, inherits Exception> public method __wakeup ] {
- Parameters [0] {
}
- - Return [ ?array ]
}
- }
- }
-
- Interface [ <internal:couchbase> interface Couchbase\TermFacetResult ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
- - Properties [0] {
- }
-
- - Methods [2] {
- Method [ <internal:couchbase> abstract public method term ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {
- Parameters [0] {
}
- Return [ string ]
}
- Method [ <internal:couchbase> abstract public method count ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {
- Parameters [0] {
}
- - Return [ int ]
}
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\TermFacetResultImpl implements Couchbase\TermFacetResult ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [2] {
- Property [ private $term = NULL ]
- Property [ private $count = 0 ]
- }
- - Methods [2] {
- Method [ <internal:couchbase, prototype Couchbase\TermFacetResult> public method term ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {
- Parameters [0] {
}
- Return [ string ]
}
- Method [ <internal:couchbase, prototype Couchbase\TermFacetResult> public method count ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {
- Parameters [0] {
}
- Return [ int ]
}
- }
- }
- Interface [ <internal:couchbase> interface Couchbase\NumericRangeFacetResult ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [0] {
- }
-
- - Methods [4] {
- Method [ <internal:couchbase> abstract public method name ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {
- Parameters [0] {
}
- - Return [ string ]
+ - Return [ array ]
}
- Method [ <internal:couchbase> abstract public method min ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {
- Parameters [0] {
}
+ - Return [ ?Throwable ]
}
- Method [ <internal:couchbase> abstract public method max ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {
- Parameters [0] {
}
+ - Return [ string ]
}
- Method [ <internal:couchbase> abstract public method count ] {
+ Method [ <internal:Core, inherits Exception, prototype Stringable> public method __toString ] {
- Parameters [0] {
}
- - Return [ int ]
+ - Return [ string ]
}
}
}
- Class [ <internal:couchbase> class Couchbase\NumericRangeFacetResultImpl implements Couchbase\NumericRangeFacetResult ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\BucketNotFoundException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -2026,174 +1290,93 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
- Properties [4] {
- Property [ private $name = NULL ]
- Property [ private $min = NULL ]
- Property [ private $max = NULL ]
- Property [ private $count = 0 ]
+ Property [ protected $message = '' ]
+ Property [ protected $code = 0 ]
+ Property [ protected $file = NULL ]
+ Property [ protected $line = NULL ]
}
- - Methods [4] {
- Method [ <internal:couchbase, prototype Couchbase\NumericRangeFacetResult> public method name ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ string ]
+ - Return [ array ]
}
- Method [ <internal:couchbase, prototype Couchbase\NumericRangeFacetResult> public method min ] {
+ Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
- - Parameters [0] {
+ - Parameters [3] {
+ Parameter #0 [ <optional> string $message = "" ]
+ Parameter #1 [ <optional> int $code = 0 ]
+ Parameter #2 [ <optional> ?Throwable $previous = null ]
}
}
- Method [ <internal:couchbase, prototype Couchbase\NumericRangeFacetResult> public method max ] {
+ Method [ <internal:Core, inherits Exception> public method __wakeup ] {
- Parameters [0] {
}
}
- Method [ <internal:couchbase, prototype Couchbase\NumericRangeFacetResult> public method count ] {
-
- - Parameters [0] {
- }
- - Return [ int ]
- }
- }
- }
-
- Interface [ <internal:couchbase> interface Couchbase\DateRangeFacetResult ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [0] {
- }
-
- - Methods [4] {
- Method [ <internal:couchbase> abstract public method name ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {
- Parameters [0] {
}
- Return [ string ]
}
- Method [ <internal:couchbase> abstract public method start ] {
-
- - Parameters [0] {
- }
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase> abstract public method end ] {
-
- - Parameters [0] {
- }
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase> abstract public method count ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {
- Parameters [0] {
}
- - Return [ int ]
}
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\DateRangeFacetResultImpl implements Couchbase\DateRangeFacetResult ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [4] {
- Property [ private $name = NULL ]
- Property [ private $start = NULL ]
- Property [ private $end = NULL ]
- Property [ private $count = 0 ]
- }
- - Methods [4] {
- Method [ <internal:couchbase, prototype Couchbase\DateRangeFacetResult> public method name ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {
- Parameters [0] {
}
- Return [ string ]
}
- Method [ <internal:couchbase, prototype Couchbase\DateRangeFacetResult> public method start ] {
-
- - Parameters [0] {
- }
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, prototype Couchbase\DateRangeFacetResult> public method end ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {
- Parameters [0] {
}
- - Return [ ?string ]
+ - Return [ int ]
}
- Method [ <internal:couchbase, prototype Couchbase\DateRangeFacetResult> public method count ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {
- Parameters [0] {
}
- - Return [ int ]
+ - Return [ array ]
}
- }
- }
-
- Interface [ <internal:couchbase> interface Couchbase\SearchResult ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
- - Properties [0] {
- }
-
- - Methods [3] {
- Method [ <internal:couchbase> abstract public method facets ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {
- Parameters [0] {
}
- - Return [ ?array ]
+ - Return [ ?Throwable ]
}
- Method [ <internal:couchbase> abstract public method metaData ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {
- Parameters [0] {
}
- - Return [ ?Couchbase\SearchMetaData ]
+ - Return [ string ]
}
- Method [ <internal:couchbase> abstract public method rows ] {
+ Method [ <internal:Core, inherits Exception, prototype Stringable> public method __toString ] {
- Parameters [0] {
}
- - Return [ ?array ]
+ - Return [ string ]
}
}
}
- Class [ <internal:couchbase> class Couchbase\SearchResultImpl implements Couchbase\SearchResult ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\CasMismatchException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -2205,151 +1388,93 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
- Properties [4] {
- Property [ private $status = NULL ]
- Property [ private $meta = NULL ]
- Property [ private $facets = NULL ]
- Property [ private $rows = NULL ]
+ Property [ protected $message = '' ]
+ Property [ protected $code = 0 ]
+ Property [ protected $file = NULL ]
+ Property [ protected $line = NULL ]
}
- - Methods [3] {
- Method [ <internal:couchbase, prototype Couchbase\SearchResult> public method metaData ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?Couchbase\SearchMetaData ]
+ - Return [ array ]
}
- Method [ <internal:couchbase, prototype Couchbase\SearchResult> public method facets ] {
+ Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
- - Parameters [0] {
+ - Parameters [3] {
+ Parameter #0 [ <optional> string $message = "" ]
+ Parameter #1 [ <optional> int $code = 0 ]
+ Parameter #2 [ <optional> ?Throwable $previous = null ]
}
- - Return [ ?array ]
}
- Method [ <internal:couchbase, prototype Couchbase\SearchResult> public method rows ] {
+ Method [ <internal:Core, inherits Exception> public method __wakeup ] {
- Parameters [0] {
}
- - Return [ ?array ]
}
- }
- }
-
- Interface [ <internal:couchbase> interface Couchbase\ViewResult ] {
-
- - Constants [0] {
- }
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [0] {
- }
-
- - Methods [2] {
- Method [ <internal:couchbase> abstract public method metaData ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {
- Parameters [0] {
}
- - Return [ ?Couchbase\ViewMetaData ]
+ - Return [ string ]
}
- Method [ <internal:couchbase> abstract public method rows ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {
- Parameters [0] {
}
- - Return [ ?array ]
}
- }
- }
- Class [ <internal:couchbase> class Couchbase\ViewResultImpl implements Couchbase\ViewResult ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [6] {
- Property [ private $status = NULL ]
- Property [ private $http_status = NULL ]
- Property [ private $body = NULL ]
- Property [ private $body_str = NULL ]
- Property [ private $meta = NULL ]
- Property [ private $rows = NULL ]
- }
-
- - Methods [2] {
- Method [ <internal:couchbase, prototype Couchbase\ViewResult> public method metaData ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {
- Parameters [0] {
}
- - Return [ ?Couchbase\ViewMetaData ]
+ - Return [ string ]
}
- Method [ <internal:couchbase, prototype Couchbase\ViewResult> public method rows ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {
- Parameters [0] {
}
- - Return [ ?array ]
+ - Return [ int ]
}
- }
- }
- Class [ <internal:couchbase> class Couchbase\ViewRow ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [4] {
- Property [ private $id = NULL ]
- Property [ private $key = NULL ]
- Property [ private $value = NULL ]
- Property [ private $document = NULL ]
- }
-
- - Methods [4] {
- Method [ <internal:couchbase> public method id ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {
- Parameters [0] {
}
- - Return [ ?string ]
+ - Return [ array ]
}
- Method [ <internal:couchbase> public method key ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {
- Parameters [0] {
}
+ - Return [ ?Throwable ]
}
- Method [ <internal:couchbase> public method value ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {
- Parameters [0] {
}
+ - Return [ string ]
}
- Method [ <internal:couchbase> public method document ] {
+ Method [ <internal:Core, inherits Exception, prototype Stringable> public method __toString ] {
- Parameters [0] {
}
+ - Return [ string ]
}
}
}
- Class [ <internal:couchbase> class Couchbase\BaseException extends Exception implements Stringable, Throwable ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\CollectionExistsException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -2360,39 +1485,19 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [17] {
+ - Properties [4] {
Property [ protected $message = '' ]
Property [ protected $code = 0 ]
Property [ protected $file = NULL ]
Property [ protected $line = NULL ]
- Property [ protected $ref = NULL ]
- Property [ protected $context = NULL ]
- Property [ protected $is_input = NULL ]
- Property [ protected $is_network = NULL ]
- Property [ protected $is_fatal = NULL ]
- Property [ protected $is_transient = NULL ]
- Property [ protected $is_data_operation = NULL ]
- Property [ protected $is_internal = NULL ]
- Property [ protected $is_plugin = NULL ]
- Property [ protected $is_server_under_load = NULL ]
- Property [ protected $is_server_generated = NULL ]
- Property [ protected $is_subdoc = NULL ]
- Property [ protected $is_durability = NULL ]
}
- - Methods [12] {
- Method [ <internal:couchbase> public method ref ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase> public method context ] {
-
- - Parameters [0] {
- }
- - Return [ ?object ]
+ - Return [ array ]
}
Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
@@ -2467,7 +1572,7 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
}
- Class [ <internal:couchbase> class Couchbase\HttpException extends Couchbase\BaseException implements Throwable, Stringable ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\CollectionNotFoundException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -2478,39 +1583,19 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [17] {
+ - Properties [4] {
Property [ protected $message = '' ]
Property [ protected $code = 0 ]
Property [ protected $file = NULL ]
Property [ protected $line = NULL ]
- Property [ protected $ref = NULL ]
- Property [ protected $context = NULL ]
- Property [ protected $is_input = NULL ]
- Property [ protected $is_network = NULL ]
- Property [ protected $is_fatal = NULL ]
- Property [ protected $is_transient = NULL ]
- Property [ protected $is_data_operation = NULL ]
- Property [ protected $is_internal = NULL ]
- Property [ protected $is_plugin = NULL ]
- Property [ protected $is_server_under_load = NULL ]
- Property [ protected $is_server_generated = NULL ]
- Property [ protected $is_subdoc = NULL ]
- Property [ protected $is_durability = NULL ]
}
- - Methods [12] {
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method ref ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method context ] {
-
- - Parameters [0] {
- }
- - Return [ ?object ]
+ - Return [ array ]
}
Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
@@ -2585,7 +1670,7 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
}
- Class [ <internal:couchbase> class Couchbase\ParsingFailureException extends Couchbase\HttpException implements Stringable, Throwable ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\CompilationFailureException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -2596,39 +1681,19 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [17] {
+ - Properties [4] {
Property [ protected $message = '' ]
Property [ protected $code = 0 ]
Property [ protected $file = NULL ]
Property [ protected $line = NULL ]
- Property [ protected $ref = NULL ]
- Property [ protected $context = NULL ]
- Property [ protected $is_input = NULL ]
- Property [ protected $is_network = NULL ]
- Property [ protected $is_fatal = NULL ]
- Property [ protected $is_transient = NULL ]
- Property [ protected $is_data_operation = NULL ]
- Property [ protected $is_internal = NULL ]
- Property [ protected $is_plugin = NULL ]
- Property [ protected $is_server_under_load = NULL ]
- Property [ protected $is_server_generated = NULL ]
- Property [ protected $is_subdoc = NULL ]
- Property [ protected $is_durability = NULL ]
}
- - Methods [12] {
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method ref ] {
-
- - Parameters [0] {
- }
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method context ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?object ]
+ - Return [ array ]
}
Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
@@ -2703,7 +1768,7 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
}
- Class [ <internal:couchbase> class Couchbase\IndexNotFoundException extends Couchbase\HttpException implements Stringable, Throwable ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\ConsistencyMismatchException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -2714,39 +1779,19 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [17] {
+ - Properties [4] {
Property [ protected $message = '' ]
Property [ protected $code = 0 ]
Property [ protected $file = NULL ]
Property [ protected $line = NULL ]
- Property [ protected $ref = NULL ]
- Property [ protected $context = NULL ]
- Property [ protected $is_input = NULL ]
- Property [ protected $is_network = NULL ]
- Property [ protected $is_fatal = NULL ]
- Property [ protected $is_transient = NULL ]
- Property [ protected $is_data_operation = NULL ]
- Property [ protected $is_internal = NULL ]
- Property [ protected $is_plugin = NULL ]
- Property [ protected $is_server_under_load = NULL ]
- Property [ protected $is_server_generated = NULL ]
- Property [ protected $is_subdoc = NULL ]
- Property [ protected $is_durability = NULL ]
}
- - Methods [12] {
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method ref ] {
-
- - Parameters [0] {
- }
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method context ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?object ]
+ - Return [ array ]
}
Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
@@ -2821,7 +1866,7 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
}
- Class [ <internal:couchbase> class Couchbase\PlanningFailureException extends Couchbase\HttpException implements Stringable, Throwable ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\DatasetExistsException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -2832,39 +1877,19 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [17] {
+ - Properties [4] {
Property [ protected $message = '' ]
Property [ protected $code = 0 ]
Property [ protected $file = NULL ]
Property [ protected $line = NULL ]
- Property [ protected $ref = NULL ]
- Property [ protected $context = NULL ]
- Property [ protected $is_input = NULL ]
- Property [ protected $is_network = NULL ]
- Property [ protected $is_fatal = NULL ]
- Property [ protected $is_transient = NULL ]
- Property [ protected $is_data_operation = NULL ]
- Property [ protected $is_internal = NULL ]
- Property [ protected $is_plugin = NULL ]
- Property [ protected $is_server_under_load = NULL ]
- Property [ protected $is_server_generated = NULL ]
- Property [ protected $is_subdoc = NULL ]
- Property [ protected $is_durability = NULL ]
}
- - Methods [12] {
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method ref ] {
-
- - Parameters [0] {
- }
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method context ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?object ]
+ - Return [ array ]
}
Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
@@ -2939,7 +1964,7 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
}
- Class [ <internal:couchbase> class Couchbase\IndexFailureException extends Couchbase\HttpException implements Stringable, Throwable ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\DatasetNotFoundException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -2950,39 +1975,19 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [17] {
+ - Properties [4] {
Property [ protected $message = '' ]
Property [ protected $code = 0 ]
Property [ protected $file = NULL ]
Property [ protected $line = NULL ]
- Property [ protected $ref = NULL ]
- Property [ protected $context = NULL ]
- Property [ protected $is_input = NULL ]
- Property [ protected $is_network = NULL ]
- Property [ protected $is_fatal = NULL ]
- Property [ protected $is_transient = NULL ]
- Property [ protected $is_data_operation = NULL ]
- Property [ protected $is_internal = NULL ]
- Property [ protected $is_plugin = NULL ]
- Property [ protected $is_server_under_load = NULL ]
- Property [ protected $is_server_generated = NULL ]
- Property [ protected $is_subdoc = NULL ]
- Property [ protected $is_durability = NULL ]
}
- - Methods [12] {
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method ref ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method context ] {
-
- - Parameters [0] {
- }
- - Return [ ?object ]
+ - Return [ array ]
}
Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
@@ -3057,7 +2062,7 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
}
- Class [ <internal:couchbase> class Couchbase\KeyspaceNotFoundException extends Couchbase\HttpException implements Stringable, Throwable ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\DataverseExistsException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -3068,39 +2073,19 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [17] {
+ - Properties [4] {
Property [ protected $message = '' ]
Property [ protected $code = 0 ]
Property [ protected $file = NULL ]
Property [ protected $line = NULL ]
- Property [ protected $ref = NULL ]
- Property [ protected $context = NULL ]
- Property [ protected $is_input = NULL ]
- Property [ protected $is_network = NULL ]
- Property [ protected $is_fatal = NULL ]
- Property [ protected $is_transient = NULL ]
- Property [ protected $is_data_operation = NULL ]
- Property [ protected $is_internal = NULL ]
- Property [ protected $is_plugin = NULL ]
- Property [ protected $is_server_under_load = NULL ]
- Property [ protected $is_server_generated = NULL ]
- Property [ protected $is_subdoc = NULL ]
- Property [ protected $is_durability = NULL ]
}
- - Methods [12] {
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method ref ] {
-
- - Parameters [0] {
- }
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method context ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?object ]
+ - Return [ array ]
}
Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
@@ -3175,7 +2160,7 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
}
- Class [ <internal:couchbase> class Couchbase\QueryException extends Couchbase\HttpException implements Stringable, Throwable ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\DataverseNotFoundException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -3186,39 +2171,19 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [17] {
+ - Properties [4] {
Property [ protected $message = '' ]
Property [ protected $code = 0 ]
Property [ protected $file = NULL ]
Property [ protected $line = NULL ]
- Property [ protected $ref = NULL ]
- Property [ protected $context = NULL ]
- Property [ protected $is_input = NULL ]
- Property [ protected $is_network = NULL ]
- Property [ protected $is_fatal = NULL ]
- Property [ protected $is_transient = NULL ]
- Property [ protected $is_data_operation = NULL ]
- Property [ protected $is_internal = NULL ]
- Property [ protected $is_plugin = NULL ]
- Property [ protected $is_server_under_load = NULL ]
- Property [ protected $is_server_generated = NULL ]
- Property [ protected $is_subdoc = NULL ]
- Property [ protected $is_durability = NULL ]
}
- - Methods [12] {
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method ref ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method context ] {
-
- - Parameters [0] {
- }
- - Return [ ?object ]
+ - Return [ array ]
}
Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
@@ -3293,7 +2258,7 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
}
- Class [ <internal:couchbase> class Couchbase\QueryErrorException extends Couchbase\QueryException implements Throwable, Stringable ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\DecodingFailureException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -3304,39 +2269,19 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [17] {
+ - Properties [4] {
Property [ protected $message = '' ]
Property [ protected $code = 0 ]
Property [ protected $file = NULL ]
Property [ protected $line = NULL ]
- Property [ protected $ref = NULL ]
- Property [ protected $context = NULL ]
- Property [ protected $is_input = NULL ]
- Property [ protected $is_network = NULL ]
- Property [ protected $is_fatal = NULL ]
- Property [ protected $is_transient = NULL ]
- Property [ protected $is_data_operation = NULL ]
- Property [ protected $is_internal = NULL ]
- Property [ protected $is_plugin = NULL ]
- Property [ protected $is_server_under_load = NULL ]
- Property [ protected $is_server_generated = NULL ]
- Property [ protected $is_subdoc = NULL ]
- Property [ protected $is_durability = NULL ]
}
- - Methods [12] {
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method ref ] {
-
- - Parameters [0] {
- }
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method context ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?object ]
+ - Return [ array ]
}
Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
@@ -3411,7 +2356,7 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
}
- Class [ <internal:couchbase> class Couchbase\QueryServiceException extends Couchbase\QueryException implements Throwable, Stringable ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\DeltaInvalidException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -3422,39 +2367,19 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [17] {
+ - Properties [4] {
Property [ protected $message = '' ]
Property [ protected $code = 0 ]
Property [ protected $file = NULL ]
Property [ protected $line = NULL ]
- Property [ protected $ref = NULL ]
- Property [ protected $context = NULL ]
- Property [ protected $is_input = NULL ]
- Property [ protected $is_network = NULL ]
- Property [ protected $is_fatal = NULL ]
- Property [ protected $is_transient = NULL ]
- Property [ protected $is_data_operation = NULL ]
- Property [ protected $is_internal = NULL ]
- Property [ protected $is_plugin = NULL ]
- Property [ protected $is_server_under_load = NULL ]
- Property [ protected $is_server_generated = NULL ]
- Property [ protected $is_subdoc = NULL ]
- Property [ protected $is_durability = NULL ]
}
- - Methods [12] {
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method ref ] {
-
- - Parameters [0] {
- }
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method context ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?object ]
+ - Return [ array ]
}
Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
@@ -3529,7 +2454,7 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
}
- Class [ <internal:couchbase> class Couchbase\PreparedStatementFailureException extends Couchbase\QueryException implements Throwable, Stringable ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\DesignDocumentNotFoundException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -3540,39 +2465,19 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [17] {
+ - Properties [4] {
Property [ protected $message = '' ]
Property [ protected $code = 0 ]
Property [ protected $file = NULL ]
Property [ protected $line = NULL ]
- Property [ protected $ref = NULL ]
- Property [ protected $context = NULL ]
- Property [ protected $is_input = NULL ]
- Property [ protected $is_network = NULL ]
- Property [ protected $is_fatal = NULL ]
- Property [ protected $is_transient = NULL ]
- Property [ protected $is_data_operation = NULL ]
- Property [ protected $is_internal = NULL ]
- Property [ protected $is_plugin = NULL ]
- Property [ protected $is_server_under_load = NULL ]
- Property [ protected $is_server_generated = NULL ]
- Property [ protected $is_subdoc = NULL ]
- Property [ protected $is_durability = NULL ]
}
- - Methods [12] {
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method ref ] {
-
- - Parameters [0] {
- }
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method context ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?object ]
+ - Return [ array ]
}
Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
@@ -3647,7 +2552,7 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
}
- Class [ <internal:couchbase> class Couchbase\DmlFailureException extends Couchbase\QueryException implements Throwable, Stringable ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\DocumentExistsException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -3658,39 +2563,19 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [17] {
+ - Properties [4] {
Property [ protected $message = '' ]
Property [ protected $code = 0 ]
Property [ protected $file = NULL ]
Property [ protected $line = NULL ]
- Property [ protected $ref = NULL ]
- Property [ protected $context = NULL ]
- Property [ protected $is_input = NULL ]
- Property [ protected $is_network = NULL ]
- Property [ protected $is_fatal = NULL ]
- Property [ protected $is_transient = NULL ]
- Property [ protected $is_data_operation = NULL ]
- Property [ protected $is_internal = NULL ]
- Property [ protected $is_plugin = NULL ]
- Property [ protected $is_server_under_load = NULL ]
- Property [ protected $is_server_generated = NULL ]
- Property [ protected $is_subdoc = NULL ]
- Property [ protected $is_durability = NULL ]
}
- - Methods [12] {
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method ref ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method context ] {
-
- - Parameters [0] {
- }
- - Return [ ?object ]
+ - Return [ array ]
}
Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
@@ -3765,7 +2650,7 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
}
- Class [ <internal:couchbase> class Couchbase\SearchException extends Couchbase\HttpException implements Stringable, Throwable ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\DocumentIrretrievableException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -3776,39 +2661,19 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [17] {
+ - Properties [4] {
Property [ protected $message = '' ]
Property [ protected $code = 0 ]
Property [ protected $file = NULL ]
Property [ protected $line = NULL ]
- Property [ protected $ref = NULL ]
- Property [ protected $context = NULL ]
- Property [ protected $is_input = NULL ]
- Property [ protected $is_network = NULL ]
- Property [ protected $is_fatal = NULL ]
- Property [ protected $is_transient = NULL ]
- Property [ protected $is_data_operation = NULL ]
- Property [ protected $is_internal = NULL ]
- Property [ protected $is_plugin = NULL ]
- Property [ protected $is_server_under_load = NULL ]
- Property [ protected $is_server_generated = NULL ]
- Property [ protected $is_subdoc = NULL ]
- Property [ protected $is_durability = NULL ]
}
- - Methods [12] {
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method ref ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method context ] {
-
- - Parameters [0] {
- }
- - Return [ ?object ]
+ - Return [ array ]
}
Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
@@ -3883,7 +2748,7 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
}
- Class [ <internal:couchbase> class Couchbase\AnalyticsException extends Couchbase\HttpException implements Stringable, Throwable ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\DocumentLockedException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -3894,39 +2759,19 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [17] {
+ - Properties [4] {
Property [ protected $message = '' ]
Property [ protected $code = 0 ]
Property [ protected $file = NULL ]
Property [ protected $line = NULL ]
- Property [ protected $ref = NULL ]
- Property [ protected $context = NULL ]
- Property [ protected $is_input = NULL ]
- Property [ protected $is_network = NULL ]
- Property [ protected $is_fatal = NULL ]
- Property [ protected $is_transient = NULL ]
- Property [ protected $is_data_operation = NULL ]
- Property [ protected $is_internal = NULL ]
- Property [ protected $is_plugin = NULL ]
- Property [ protected $is_server_under_load = NULL ]
- Property [ protected $is_server_generated = NULL ]
- Property [ protected $is_subdoc = NULL ]
- Property [ protected $is_durability = NULL ]
}
- - Methods [12] {
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method ref ] {
-
- - Parameters [0] {
- }
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method context ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?object ]
+ - Return [ array ]
}
Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
@@ -4001,7 +2846,7 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
}
- Class [ <internal:couchbase> class Couchbase\ViewException extends Couchbase\HttpException implements Stringable, Throwable ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\DocumentNotFoundException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -4012,39 +2857,19 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [17] {
+ - Properties [4] {
Property [ protected $message = '' ]
Property [ protected $code = 0 ]
Property [ protected $file = NULL ]
Property [ protected $line = NULL ]
- Property [ protected $ref = NULL ]
- Property [ protected $context = NULL ]
- Property [ protected $is_input = NULL ]
- Property [ protected $is_network = NULL ]
- Property [ protected $is_fatal = NULL ]
- Property [ protected $is_transient = NULL ]
- Property [ protected $is_data_operation = NULL ]
- Property [ protected $is_internal = NULL ]
- Property [ protected $is_plugin = NULL ]
- Property [ protected $is_server_under_load = NULL ]
- Property [ protected $is_server_generated = NULL ]
- Property [ protected $is_subdoc = NULL ]
- Property [ protected $is_durability = NULL ]
}
- - Methods [12] {
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method ref ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method context ] {
-
- - Parameters [0] {
- }
- - Return [ ?object ]
+ - Return [ array ]
}
Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
@@ -4119,7 +2944,7 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
}
- Class [ <internal:couchbase> class Couchbase\PartialViewException extends Couchbase\ViewException implements Throwable, Stringable ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\DocumentNotJsonException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -4130,39 +2955,19 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [17] {
+ - Properties [4] {
Property [ protected $message = '' ]
Property [ protected $code = 0 ]
Property [ protected $file = NULL ]
Property [ protected $line = NULL ]
- Property [ protected $ref = NULL ]
- Property [ protected $context = NULL ]
- Property [ protected $is_input = NULL ]
- Property [ protected $is_network = NULL ]
- Property [ protected $is_fatal = NULL ]
- Property [ protected $is_transient = NULL ]
- Property [ protected $is_data_operation = NULL ]
- Property [ protected $is_internal = NULL ]
- Property [ protected $is_plugin = NULL ]
- Property [ protected $is_server_under_load = NULL ]
- Property [ protected $is_server_generated = NULL ]
- Property [ protected $is_subdoc = NULL ]
- Property [ protected $is_durability = NULL ]
}
- - Methods [12] {
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method ref ] {
-
- - Parameters [0] {
- }
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method context ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?object ]
+ - Return [ array ]
}
Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
@@ -4237,7 +3042,7 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
}
- Class [ <internal:couchbase> class Couchbase\BindingsException extends Couchbase\BaseException implements Throwable, Stringable ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\DurabilityAmbiguousException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -4248,39 +3053,19 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [17] {
+ - Properties [4] {
Property [ protected $message = '' ]
Property [ protected $code = 0 ]
Property [ protected $file = NULL ]
Property [ protected $line = NULL ]
- Property [ protected $ref = NULL ]
- Property [ protected $context = NULL ]
- Property [ protected $is_input = NULL ]
- Property [ protected $is_network = NULL ]
- Property [ protected $is_fatal = NULL ]
- Property [ protected $is_transient = NULL ]
- Property [ protected $is_data_operation = NULL ]
- Property [ protected $is_internal = NULL ]
- Property [ protected $is_plugin = NULL ]
- Property [ protected $is_server_under_load = NULL ]
- Property [ protected $is_server_generated = NULL ]
- Property [ protected $is_subdoc = NULL ]
- Property [ protected $is_durability = NULL ]
}
- - Methods [12] {
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method ref ] {
-
- - Parameters [0] {
- }
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method context ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?object ]
+ - Return [ array ]
}
Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
@@ -4355,7 +3140,7 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
}
- Class [ <internal:couchbase> class Couchbase\InvalidStateException extends Couchbase\BaseException implements Throwable, Stringable ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\DurabilityImpossibleException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -4366,39 +3151,19 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [17] {
+ - Properties [4] {
Property [ protected $message = '' ]
Property [ protected $code = 0 ]
Property [ protected $file = NULL ]
Property [ protected $line = NULL ]
- Property [ protected $ref = NULL ]
- Property [ protected $context = NULL ]
- Property [ protected $is_input = NULL ]
- Property [ protected $is_network = NULL ]
- Property [ protected $is_fatal = NULL ]
- Property [ protected $is_transient = NULL ]
- Property [ protected $is_data_operation = NULL ]
- Property [ protected $is_internal = NULL ]
- Property [ protected $is_plugin = NULL ]
- Property [ protected $is_server_under_load = NULL ]
- Property [ protected $is_server_generated = NULL ]
- Property [ protected $is_subdoc = NULL ]
- Property [ protected $is_durability = NULL ]
}
- - Methods [12] {
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method ref ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method context ] {
-
- - Parameters [0] {
- }
- - Return [ ?object ]
+ - Return [ array ]
}
Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
@@ -4473,7 +3238,7 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
}
- Class [ <internal:couchbase> class Couchbase\KeyValueException extends Couchbase\BaseException implements Throwable, Stringable ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\DurabilityLevelNotAvailableException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -4484,39 +3249,19 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [17] {
+ - Properties [4] {
Property [ protected $message = '' ]
Property [ protected $code = 0 ]
Property [ protected $file = NULL ]
Property [ protected $line = NULL ]
- Property [ protected $ref = NULL ]
- Property [ protected $context = NULL ]
- Property [ protected $is_input = NULL ]
- Property [ protected $is_network = NULL ]
- Property [ protected $is_fatal = NULL ]
- Property [ protected $is_transient = NULL ]
- Property [ protected $is_data_operation = NULL ]
- Property [ protected $is_internal = NULL ]
- Property [ protected $is_plugin = NULL ]
- Property [ protected $is_server_under_load = NULL ]
- Property [ protected $is_server_generated = NULL ]
- Property [ protected $is_subdoc = NULL ]
- Property [ protected $is_durability = NULL ]
}
- - Methods [12] {
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method ref ] {
-
- - Parameters [0] {
- }
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method context ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?object ]
+ - Return [ array ]
}
Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
@@ -4591,7 +3336,7 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
}
- Class [ <internal:couchbase> class Couchbase\DocumentNotFoundException extends Couchbase\KeyValueException implements Stringable, Throwable ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\DurableWriteInProgressException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -4602,39 +3347,19 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [17] {
+ - Properties [4] {
Property [ protected $message = '' ]
Property [ protected $code = 0 ]
Property [ protected $file = NULL ]
Property [ protected $line = NULL ]
- Property [ protected $ref = NULL ]
- Property [ protected $context = NULL ]
- Property [ protected $is_input = NULL ]
- Property [ protected $is_network = NULL ]
- Property [ protected $is_fatal = NULL ]
- Property [ protected $is_transient = NULL ]
- Property [ protected $is_data_operation = NULL ]
- Property [ protected $is_internal = NULL ]
- Property [ protected $is_plugin = NULL ]
- Property [ protected $is_server_under_load = NULL ]
- Property [ protected $is_server_generated = NULL ]
- Property [ protected $is_subdoc = NULL ]
- Property [ protected $is_durability = NULL ]
}
- - Methods [12] {
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method ref ] {
-
- - Parameters [0] {
- }
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method context ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?object ]
+ - Return [ array ]
}
Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
@@ -4709,7 +3434,7 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
}
- Class [ <internal:couchbase> class Couchbase\KeyExistsException extends Couchbase\KeyValueException implements Stringable, Throwable ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\DurableWriteReCommitInProgressException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -4720,39 +3445,19 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [17] {
+ - Properties [4] {
Property [ protected $message = '' ]
Property [ protected $code = 0 ]
Property [ protected $file = NULL ]
Property [ protected $line = NULL ]
- Property [ protected $ref = NULL ]
- Property [ protected $context = NULL ]
- Property [ protected $is_input = NULL ]
- Property [ protected $is_network = NULL ]
- Property [ protected $is_fatal = NULL ]
- Property [ protected $is_transient = NULL ]
- Property [ protected $is_data_operation = NULL ]
- Property [ protected $is_internal = NULL ]
- Property [ protected $is_plugin = NULL ]
- Property [ protected $is_server_under_load = NULL ]
- Property [ protected $is_server_generated = NULL ]
- Property [ protected $is_subdoc = NULL ]
- Property [ protected $is_durability = NULL ]
}
- - Methods [12] {
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method ref ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method context ] {
-
- - Parameters [0] {
- }
- - Return [ ?object ]
+ - Return [ array ]
}
Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
@@ -4827,7 +3532,7 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
}
- Class [ <internal:couchbase> class Couchbase\ValueTooBigException extends Couchbase\KeyValueException implements Stringable, Throwable ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\EncodingFailureException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -4838,39 +3543,19 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [17] {
+ - Properties [4] {
Property [ protected $message = '' ]
Property [ protected $code = 0 ]
Property [ protected $file = NULL ]
Property [ protected $line = NULL ]
- Property [ protected $ref = NULL ]
- Property [ protected $context = NULL ]
- Property [ protected $is_input = NULL ]
- Property [ protected $is_network = NULL ]
- Property [ protected $is_fatal = NULL ]
- Property [ protected $is_transient = NULL ]
- Property [ protected $is_data_operation = NULL ]
- Property [ protected $is_internal = NULL ]
- Property [ protected $is_plugin = NULL ]
- Property [ protected $is_server_under_load = NULL ]
- Property [ protected $is_server_generated = NULL ]
- Property [ protected $is_subdoc = NULL ]
- Property [ protected $is_durability = NULL ]
}
- - Methods [12] {
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method ref ] {
-
- - Parameters [0] {
- }
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method context ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?object ]
+ - Return [ array ]
}
Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
@@ -4945,7 +3630,7 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
}
- Class [ <internal:couchbase> class Couchbase\KeyLockedException extends Couchbase\KeyValueException implements Stringable, Throwable ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\FeatureNotAvailableException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -4956,39 +3641,19 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [17] {
+ - Properties [4] {
Property [ protected $message = '' ]
Property [ protected $code = 0 ]
Property [ protected $file = NULL ]
Property [ protected $line = NULL ]
- Property [ protected $ref = NULL ]
- Property [ protected $context = NULL ]
- Property [ protected $is_input = NULL ]
- Property [ protected $is_network = NULL ]
- Property [ protected $is_fatal = NULL ]
- Property [ protected $is_transient = NULL ]
- Property [ protected $is_data_operation = NULL ]
- Property [ protected $is_internal = NULL ]
- Property [ protected $is_plugin = NULL ]
- Property [ protected $is_server_under_load = NULL ]
- Property [ protected $is_server_generated = NULL ]
- Property [ protected $is_subdoc = NULL ]
- Property [ protected $is_durability = NULL ]
}
- - Methods [12] {
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method ref ] {
-
- - Parameters [0] {
- }
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method context ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?object ]
+ - Return [ array ]
}
Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
@@ -5063,7 +3728,7 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
}
- Class [ <internal:couchbase> class Couchbase\TempFailException extends Couchbase\KeyValueException implements Stringable, Throwable ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\GroupNotFoundException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -5074,39 +3739,19 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [17] {
+ - Properties [4] {
Property [ protected $message = '' ]
Property [ protected $code = 0 ]
Property [ protected $file = NULL ]
Property [ protected $line = NULL ]
- Property [ protected $ref = NULL ]
- Property [ protected $context = NULL ]
- Property [ protected $is_input = NULL ]
- Property [ protected $is_network = NULL ]
- Property [ protected $is_fatal = NULL ]
- Property [ protected $is_transient = NULL ]
- Property [ protected $is_data_operation = NULL ]
- Property [ protected $is_internal = NULL ]
- Property [ protected $is_plugin = NULL ]
- Property [ protected $is_server_under_load = NULL ]
- Property [ protected $is_server_generated = NULL ]
- Property [ protected $is_subdoc = NULL ]
- Property [ protected $is_durability = NULL ]
}
- - Methods [12] {
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method ref ] {
-
- - Parameters [0] {
- }
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method context ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?object ]
+ - Return [ array ]
}
Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
@@ -5181,7 +3826,7 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
}
- Class [ <internal:couchbase> class Couchbase\PathNotFoundException extends Couchbase\KeyValueException implements Stringable, Throwable ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\IndexExistsException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -5192,39 +3837,19 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [17] {
+ - Properties [4] {
Property [ protected $message = '' ]
Property [ protected $code = 0 ]
Property [ protected $file = NULL ]
Property [ protected $line = NULL ]
- Property [ protected $ref = NULL ]
- Property [ protected $context = NULL ]
- Property [ protected $is_input = NULL ]
- Property [ protected $is_network = NULL ]
- Property [ protected $is_fatal = NULL ]
- Property [ protected $is_transient = NULL ]
- Property [ protected $is_data_operation = NULL ]
- Property [ protected $is_internal = NULL ]
- Property [ protected $is_plugin = NULL ]
- Property [ protected $is_server_under_load = NULL ]
- Property [ protected $is_server_generated = NULL ]
- Property [ protected $is_subdoc = NULL ]
- Property [ protected $is_durability = NULL ]
}
- - Methods [12] {
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method ref ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method context ] {
-
- - Parameters [0] {
- }
- - Return [ ?object ]
+ - Return [ array ]
}
Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
@@ -5299,7 +3924,7 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
}
- Class [ <internal:couchbase> class Couchbase\PathExistsException extends Couchbase\KeyValueException implements Stringable, Throwable ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\IndexFailureException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -5310,39 +3935,19 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [17] {
+ - Properties [4] {
Property [ protected $message = '' ]
Property [ protected $code = 0 ]
Property [ protected $file = NULL ]
Property [ protected $line = NULL ]
- Property [ protected $ref = NULL ]
- Property [ protected $context = NULL ]
- Property [ protected $is_input = NULL ]
- Property [ protected $is_network = NULL ]
- Property [ protected $is_fatal = NULL ]
- Property [ protected $is_transient = NULL ]
- Property [ protected $is_data_operation = NULL ]
- Property [ protected $is_internal = NULL ]
- Property [ protected $is_plugin = NULL ]
- Property [ protected $is_server_under_load = NULL ]
- Property [ protected $is_server_generated = NULL ]
- Property [ protected $is_subdoc = NULL ]
- Property [ protected $is_durability = NULL ]
}
- - Methods [12] {
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method ref ] {
-
- - Parameters [0] {
- }
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method context ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?object ]
+ - Return [ array ]
}
Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
@@ -5417,7 +4022,7 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
}
- Class [ <internal:couchbase> class Couchbase\InvalidRangeException extends Couchbase\KeyValueException implements Stringable, Throwable ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\IndexNotFoundException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -5428,39 +4033,19 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [17] {
+ - Properties [4] {
Property [ protected $message = '' ]
Property [ protected $code = 0 ]
Property [ protected $file = NULL ]
Property [ protected $line = NULL ]
- Property [ protected $ref = NULL ]
- Property [ protected $context = NULL ]
- Property [ protected $is_input = NULL ]
- Property [ protected $is_network = NULL ]
- Property [ protected $is_fatal = NULL ]
- Property [ protected $is_transient = NULL ]
- Property [ protected $is_data_operation = NULL ]
- Property [ protected $is_internal = NULL ]
- Property [ protected $is_plugin = NULL ]
- Property [ protected $is_server_under_load = NULL ]
- Property [ protected $is_server_generated = NULL ]
- Property [ protected $is_subdoc = NULL ]
- Property [ protected $is_durability = NULL ]
}
- - Methods [12] {
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method ref ] {
-
- - Parameters [0] {
- }
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method context ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?object ]
+ - Return [ array ]
}
Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
@@ -5535,7 +4120,7 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
}
- Class [ <internal:couchbase> class Couchbase\KeyDeletedException extends Couchbase\KeyValueException implements Stringable, Throwable ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\IndexNotReadyException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -5546,39 +4131,19 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [17] {
+ - Properties [4] {
Property [ protected $message = '' ]
Property [ protected $code = 0 ]
Property [ protected $file = NULL ]
Property [ protected $line = NULL ]
- Property [ protected $ref = NULL ]
- Property [ protected $context = NULL ]
- Property [ protected $is_input = NULL ]
- Property [ protected $is_network = NULL ]
- Property [ protected $is_fatal = NULL ]
- Property [ protected $is_transient = NULL ]
- Property [ protected $is_data_operation = NULL ]
- Property [ protected $is_internal = NULL ]
- Property [ protected $is_plugin = NULL ]
- Property [ protected $is_server_under_load = NULL ]
- Property [ protected $is_server_generated = NULL ]
- Property [ protected $is_subdoc = NULL ]
- Property [ protected $is_durability = NULL ]
}
- - Methods [12] {
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method ref ] {
-
- - Parameters [0] {
- }
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method context ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?object ]
+ - Return [ array ]
}
Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
@@ -5653,7 +4218,7 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
}
- Class [ <internal:couchbase> class Couchbase\CasMismatchException extends Couchbase\KeyValueException implements Stringable, Throwable ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\InternalServerFailureException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -5664,39 +4229,19 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [17] {
+ - Properties [4] {
Property [ protected $message = '' ]
Property [ protected $code = 0 ]
Property [ protected $file = NULL ]
Property [ protected $line = NULL ]
- Property [ protected $ref = NULL ]
- Property [ protected $context = NULL ]
- Property [ protected $is_input = NULL ]
- Property [ protected $is_network = NULL ]
- Property [ protected $is_fatal = NULL ]
- Property [ protected $is_transient = NULL ]
- Property [ protected $is_data_operation = NULL ]
- Property [ protected $is_internal = NULL ]
- Property [ protected $is_plugin = NULL ]
- Property [ protected $is_server_under_load = NULL ]
- Property [ protected $is_server_generated = NULL ]
- Property [ protected $is_subdoc = NULL ]
- Property [ protected $is_durability = NULL ]
}
- - Methods [12] {
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method ref ] {
-
- - Parameters [0] {
- }
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method context ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?object ]
+ - Return [ array ]
}
Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
@@ -5771,7 +4316,7 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
}
- Class [ <internal:couchbase> class Couchbase\InvalidConfigurationException extends Couchbase\BaseException implements Throwable, Stringable ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\InvalidArgumentException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -5782,39 +4327,19 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [17] {
+ - Properties [4] {
Property [ protected $message = '' ]
Property [ protected $code = 0 ]
Property [ protected $file = NULL ]
Property [ protected $line = NULL ]
- Property [ protected $ref = NULL ]
- Property [ protected $context = NULL ]
- Property [ protected $is_input = NULL ]
- Property [ protected $is_network = NULL ]
- Property [ protected $is_fatal = NULL ]
- Property [ protected $is_transient = NULL ]
- Property [ protected $is_data_operation = NULL ]
- Property [ protected $is_internal = NULL ]
- Property [ protected $is_plugin = NULL ]
- Property [ protected $is_server_under_load = NULL ]
- Property [ protected $is_server_generated = NULL ]
- Property [ protected $is_subdoc = NULL ]
- Property [ protected $is_durability = NULL ]
}
- - Methods [12] {
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method ref ] {
-
- - Parameters [0] {
- }
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method context ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?object ]
+ - Return [ array ]
}
Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
@@ -5889,7 +4414,7 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
}
- Class [ <internal:couchbase> class Couchbase\RequestCanceledException extends Couchbase\BaseException implements Throwable, Stringable ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\JobQueueFullException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -5900,39 +4425,19 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [17] {
+ - Properties [4] {
Property [ protected $message = '' ]
Property [ protected $code = 0 ]
Property [ protected $file = NULL ]
Property [ protected $line = NULL ]
- Property [ protected $ref = NULL ]
- Property [ protected $context = NULL ]
- Property [ protected $is_input = NULL ]
- Property [ protected $is_network = NULL ]
- Property [ protected $is_fatal = NULL ]
- Property [ protected $is_transient = NULL ]
- Property [ protected $is_data_operation = NULL ]
- Property [ protected $is_internal = NULL ]
- Property [ protected $is_plugin = NULL ]
- Property [ protected $is_server_under_load = NULL ]
- Property [ protected $is_server_generated = NULL ]
- Property [ protected $is_subdoc = NULL ]
- Property [ protected $is_durability = NULL ]
}
- - Methods [12] {
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method ref ] {
-
- - Parameters [0] {
- }
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method context ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?object ]
+ - Return [ array ]
}
Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
@@ -6007,7 +4512,7 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
}
- Class [ <internal:couchbase> class Couchbase\ServiceNotAvailableException extends Couchbase\BaseException implements Throwable, Stringable ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\LinkExistsException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -6018,39 +4523,19 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [17] {
+ - Properties [4] {
Property [ protected $message = '' ]
Property [ protected $code = 0 ]
Property [ protected $file = NULL ]
Property [ protected $line = NULL ]
- Property [ protected $ref = NULL ]
- Property [ protected $context = NULL ]
- Property [ protected $is_input = NULL ]
- Property [ protected $is_network = NULL ]
- Property [ protected $is_fatal = NULL ]
- Property [ protected $is_transient = NULL ]
- Property [ protected $is_data_operation = NULL ]
- Property [ protected $is_internal = NULL ]
- Property [ protected $is_plugin = NULL ]
- Property [ protected $is_server_under_load = NULL ]
- Property [ protected $is_server_generated = NULL ]
- Property [ protected $is_subdoc = NULL ]
- Property [ protected $is_durability = NULL ]
}
- - Methods [12] {
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method ref ] {
-
- - Parameters [0] {
- }
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method context ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?object ]
+ - Return [ array ]
}
Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
@@ -6125,7 +4610,7 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
}
- Class [ <internal:couchbase> class Couchbase\NetworkException extends Couchbase\BaseException implements Throwable, Stringable ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\LinkNotFoundException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -6136,39 +4621,19 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [17] {
+ - Properties [4] {
Property [ protected $message = '' ]
Property [ protected $code = 0 ]
Property [ protected $file = NULL ]
Property [ protected $line = NULL ]
- Property [ protected $ref = NULL ]
- Property [ protected $context = NULL ]
- Property [ protected $is_input = NULL ]
- Property [ protected $is_network = NULL ]
- Property [ protected $is_fatal = NULL ]
- Property [ protected $is_transient = NULL ]
- Property [ protected $is_data_operation = NULL ]
- Property [ protected $is_internal = NULL ]
- Property [ protected $is_plugin = NULL ]
- Property [ protected $is_server_under_load = NULL ]
- Property [ protected $is_server_generated = NULL ]
- Property [ protected $is_subdoc = NULL ]
- Property [ protected $is_durability = NULL ]
}
- - Methods [12] {
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method ref ] {
-
- - Parameters [0] {
- }
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method context ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?object ]
+ - Return [ array ]
}
Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
@@ -6243,7 +4708,7 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
}
- Class [ <internal:couchbase> class Couchbase\TimeoutException extends Couchbase\BaseException implements Throwable, Stringable ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\NumberTooBigException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -6254,39 +4719,19 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [17] {
+ - Properties [4] {
Property [ protected $message = '' ]
Property [ protected $code = 0 ]
Property [ protected $file = NULL ]
Property [ protected $line = NULL ]
- Property [ protected $ref = NULL ]
- Property [ protected $context = NULL ]
- Property [ protected $is_input = NULL ]
- Property [ protected $is_network = NULL ]
- Property [ protected $is_fatal = NULL ]
- Property [ protected $is_transient = NULL ]
- Property [ protected $is_data_operation = NULL ]
- Property [ protected $is_internal = NULL ]
- Property [ protected $is_plugin = NULL ]
- Property [ protected $is_server_under_load = NULL ]
- Property [ protected $is_server_generated = NULL ]
- Property [ protected $is_subdoc = NULL ]
- Property [ protected $is_durability = NULL ]
}
- - Methods [12] {
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method ref ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method context ] {
-
- - Parameters [0] {
- }
- - Return [ ?object ]
+ - Return [ array ]
}
Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
@@ -6361,7 +4806,7 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
}
- Class [ <internal:couchbase> class Couchbase\BucketMissingException extends Couchbase\BaseException implements Throwable, Stringable ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\ParsingFailureException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -6372,39 +4817,19 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [17] {
+ - Properties [4] {
Property [ protected $message = '' ]
Property [ protected $code = 0 ]
Property [ protected $file = NULL ]
Property [ protected $line = NULL ]
- Property [ protected $ref = NULL ]
- Property [ protected $context = NULL ]
- Property [ protected $is_input = NULL ]
- Property [ protected $is_network = NULL ]
- Property [ protected $is_fatal = NULL ]
- Property [ protected $is_transient = NULL ]
- Property [ protected $is_data_operation = NULL ]
- Property [ protected $is_internal = NULL ]
- Property [ protected $is_plugin = NULL ]
- Property [ protected $is_server_under_load = NULL ]
- Property [ protected $is_server_generated = NULL ]
- Property [ protected $is_subdoc = NULL ]
- Property [ protected $is_durability = NULL ]
}
- - Methods [12] {
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method ref ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method context ] {
-
- - Parameters [0] {
- }
- - Return [ ?object ]
+ - Return [ array ]
}
Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
@@ -6479,7 +4904,7 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
}
- Class [ <internal:couchbase> class Couchbase\ScopeMissingException extends Couchbase\BaseException implements Throwable, Stringable ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\PathExistsException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -6490,39 +4915,19 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [17] {
+ - Properties [4] {
Property [ protected $message = '' ]
Property [ protected $code = 0 ]
Property [ protected $file = NULL ]
Property [ protected $line = NULL ]
- Property [ protected $ref = NULL ]
- Property [ protected $context = NULL ]
- Property [ protected $is_input = NULL ]
- Property [ protected $is_network = NULL ]
- Property [ protected $is_fatal = NULL ]
- Property [ protected $is_transient = NULL ]
- Property [ protected $is_data_operation = NULL ]
- Property [ protected $is_internal = NULL ]
- Property [ protected $is_plugin = NULL ]
- Property [ protected $is_server_under_load = NULL ]
- Property [ protected $is_server_generated = NULL ]
- Property [ protected $is_subdoc = NULL ]
- Property [ protected $is_durability = NULL ]
}
- - Methods [12] {
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method ref ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method context ] {
-
- - Parameters [0] {
- }
- - Return [ ?object ]
+ - Return [ array ]
}
Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
@@ -6597,7 +5002,7 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
}
- Class [ <internal:couchbase> class Couchbase\CollectionMissingException extends Couchbase\BaseException implements Throwable, Stringable ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\PathInvalidException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -6608,39 +5013,19 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [17] {
+ - Properties [4] {
Property [ protected $message = '' ]
Property [ protected $code = 0 ]
Property [ protected $file = NULL ]
Property [ protected $line = NULL ]
- Property [ protected $ref = NULL ]
- Property [ protected $context = NULL ]
- Property [ protected $is_input = NULL ]
- Property [ protected $is_network = NULL ]
- Property [ protected $is_fatal = NULL ]
- Property [ protected $is_transient = NULL ]
- Property [ protected $is_data_operation = NULL ]
- Property [ protected $is_internal = NULL ]
- Property [ protected $is_plugin = NULL ]
- Property [ protected $is_server_under_load = NULL ]
- Property [ protected $is_server_generated = NULL ]
- Property [ protected $is_subdoc = NULL ]
- Property [ protected $is_durability = NULL ]
}
- - Methods [12] {
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method ref ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method context ] {
-
- - Parameters [0] {
- }
- - Return [ ?object ]
+ - Return [ array ]
}
Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
@@ -6715,7 +5100,7 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
}
- Class [ <internal:couchbase> class Couchbase\AuthenticationException extends Couchbase\BaseException implements Throwable, Stringable ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\PathMismatchException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -6726,39 +5111,19 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [17] {
+ - Properties [4] {
Property [ protected $message = '' ]
Property [ protected $code = 0 ]
Property [ protected $file = NULL ]
Property [ protected $line = NULL ]
- Property [ protected $ref = NULL ]
- Property [ protected $context = NULL ]
- Property [ protected $is_input = NULL ]
- Property [ protected $is_network = NULL ]
- Property [ protected $is_fatal = NULL ]
- Property [ protected $is_transient = NULL ]
- Property [ protected $is_data_operation = NULL ]
- Property [ protected $is_internal = NULL ]
- Property [ protected $is_plugin = NULL ]
- Property [ protected $is_server_under_load = NULL ]
- Property [ protected $is_server_generated = NULL ]
- Property [ protected $is_subdoc = NULL ]
- Property [ protected $is_durability = NULL ]
}
- - Methods [12] {
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method ref ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method context ] {
-
- - Parameters [0] {
- }
- - Return [ ?object ]
+ - Return [ array ]
}
Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
@@ -6833,7 +5198,7 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
}
- Class [ <internal:couchbase> class Couchbase\BadInputException extends Couchbase\BaseException implements Throwable, Stringable ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\PathNotFoundException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -6844,39 +5209,19 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [17] {
+ - Properties [4] {
Property [ protected $message = '' ]
Property [ protected $code = 0 ]
Property [ protected $file = NULL ]
Property [ protected $line = NULL ]
- Property [ protected $ref = NULL ]
- Property [ protected $context = NULL ]
- Property [ protected $is_input = NULL ]
- Property [ protected $is_network = NULL ]
- Property [ protected $is_fatal = NULL ]
- Property [ protected $is_transient = NULL ]
- Property [ protected $is_data_operation = NULL ]
- Property [ protected $is_internal = NULL ]
- Property [ protected $is_plugin = NULL ]
- Property [ protected $is_server_under_load = NULL ]
- Property [ protected $is_server_generated = NULL ]
- Property [ protected $is_subdoc = NULL ]
- Property [ protected $is_durability = NULL ]
}
- - Methods [12] {
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method ref ] {
-
- - Parameters [0] {
- }
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method context ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?object ]
+ - Return [ array ]
}
Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
@@ -6951,7 +5296,7 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
}
- Class [ <internal:couchbase> class Couchbase\DurabilityException extends Couchbase\BaseException implements Throwable, Stringable ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\PathTooBigException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -6962,39 +5307,19 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [17] {
+ - Properties [4] {
Property [ protected $message = '' ]
Property [ protected $code = 0 ]
Property [ protected $file = NULL ]
Property [ protected $line = NULL ]
- Property [ protected $ref = NULL ]
- Property [ protected $context = NULL ]
- Property [ protected $is_input = NULL ]
- Property [ protected $is_network = NULL ]
- Property [ protected $is_fatal = NULL ]
- Property [ protected $is_transient = NULL ]
- Property [ protected $is_data_operation = NULL ]
- Property [ protected $is_internal = NULL ]
- Property [ protected $is_plugin = NULL ]
- Property [ protected $is_server_under_load = NULL ]
- Property [ protected $is_server_generated = NULL ]
- Property [ protected $is_subdoc = NULL ]
- Property [ protected $is_durability = NULL ]
}
- - Methods [12] {
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method ref ] {
-
- - Parameters [0] {
- }
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method context ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?object ]
+ - Return [ array ]
}
Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
@@ -7069,7 +5394,7 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
}
- Class [ <internal:couchbase> class Couchbase\SubdocumentException extends Couchbase\BaseException implements Throwable, Stringable ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\PathTooDeepException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -7080,39 +5405,19 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [17] {
+ - Properties [4] {
Property [ protected $message = '' ]
Property [ protected $code = 0 ]
Property [ protected $file = NULL ]
Property [ protected $line = NULL ]
- Property [ protected $ref = NULL ]
- Property [ protected $context = NULL ]
- Property [ protected $is_input = NULL ]
- Property [ protected $is_network = NULL ]
- Property [ protected $is_fatal = NULL ]
- Property [ protected $is_transient = NULL ]
- Property [ protected $is_data_operation = NULL ]
- Property [ protected $is_internal = NULL ]
- Property [ protected $is_plugin = NULL ]
- Property [ protected $is_server_under_load = NULL ]
- Property [ protected $is_server_generated = NULL ]
- Property [ protected $is_subdoc = NULL ]
- Property [ protected $is_durability = NULL ]
}
- - Methods [12] {
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method ref ] {
-
- - Parameters [0] {
- }
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method context ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?object ]
+ - Return [ array ]
}
Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
@@ -7187,7 +5492,7 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
}
- Class [ <internal:couchbase> class Couchbase\RateLimitedException extends Couchbase\BaseException implements Throwable, Stringable ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\PlanningFailureException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -7198,39 +5503,19 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [17] {
+ - Properties [4] {
Property [ protected $message = '' ]
Property [ protected $code = 0 ]
Property [ protected $file = NULL ]
Property [ protected $line = NULL ]
- Property [ protected $ref = NULL ]
- Property [ protected $context = NULL ]
- Property [ protected $is_input = NULL ]
- Property [ protected $is_network = NULL ]
- Property [ protected $is_fatal = NULL ]
- Property [ protected $is_transient = NULL ]
- Property [ protected $is_data_operation = NULL ]
- Property [ protected $is_internal = NULL ]
- Property [ protected $is_plugin = NULL ]
- Property [ protected $is_server_under_load = NULL ]
- Property [ protected $is_server_generated = NULL ]
- Property [ protected $is_subdoc = NULL ]
- Property [ protected $is_durability = NULL ]
}
- - Methods [12] {
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method ref ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method context ] {
-
- - Parameters [0] {
- }
- - Return [ ?object ]
+ - Return [ array ]
}
Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
@@ -7305,7 +5590,7 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
}
- Class [ <internal:couchbase> class Couchbase\QuotaLimitedException extends Couchbase\BaseException implements Throwable, Stringable ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\PreparedStatementFailureException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -7316,39 +5601,19 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [17] {
+ - Properties [4] {
Property [ protected $message = '' ]
Property [ protected $code = 0 ]
Property [ protected $file = NULL ]
Property [ protected $line = NULL ]
- Property [ protected $ref = NULL ]
- Property [ protected $context = NULL ]
- Property [ protected $is_input = NULL ]
- Property [ protected $is_network = NULL ]
- Property [ protected $is_fatal = NULL ]
- Property [ protected $is_transient = NULL ]
- Property [ protected $is_data_operation = NULL ]
- Property [ protected $is_internal = NULL ]
- Property [ protected $is_plugin = NULL ]
- Property [ protected $is_server_under_load = NULL ]
- Property [ protected $is_server_generated = NULL ]
- Property [ protected $is_subdoc = NULL ]
- Property [ protected $is_durability = NULL ]
}
- - Methods [12] {
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method ref ] {
-
- - Parameters [0] {
- }
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase, inherits Couchbase\BaseException> public method context ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ ?object ]
+ - Return [ array ]
}
Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
@@ -7423,7 +5688,7 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
}
- Class [ <internal:couchbase> class Couchbase\Cluster ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\RequestCanceledException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -7434,422 +5699,94 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [0] {
+ - Properties [4] {
+ Property [ protected $message = '' ]
+ Property [ protected $code = 0 ]
+ Property [ protected $file = NULL ]
+ Property [ protected $line = NULL ]
}
- - Methods [10] {
- Method [ <internal:couchbase, ctor> public method __construct ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> string $connstr ]
- Parameter #1 [ <required> Couchbase\ClusterOptions $options ]
- }
- }
-
- Method [ <internal:couchbase> public method bucket ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $name ]
- }
- - Return [ Couchbase\Bucket ]
- }
-
- Method [ <internal:couchbase> public method buckets ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ Couchbase\BucketManager ]
+ - Return [ array ]
}
- Method [ <internal:couchbase> public method users ] {
+ Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
- - Parameters [0] {
+ - Parameters [3] {
+ Parameter #0 [ <optional> string $message = "" ]
+ Parameter #1 [ <optional> int $code = 0 ]
+ Parameter #2 [ <optional> ?Throwable $previous = null ]
}
- - Return [ Couchbase\UserManager ]
}
- Method [ <internal:couchbase> public method analyticsIndexes ] {
+ Method [ <internal:Core, inherits Exception> public method __wakeup ] {
- Parameters [0] {
}
- - Return [ Couchbase\AnalyticsIndexManager ]
}
- Method [ <internal:couchbase> public method queryIndexes ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {
- Parameters [0] {
}
- - Return [ Couchbase\QueryIndexManager ]
+ - Return [ string ]
}
- Method [ <internal:couchbase> public method searchIndexes ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {
- Parameters [0] {
}
- - Return [ Couchbase\SearchIndexManager ]
- }
-
- Method [ <internal:couchbase> public method query ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> string $statement ]
- Parameter #1 [ <optional> ?Couchbase\QueryOptions $queryOptions = <default> ]
- }
- - Return [ Couchbase\QueryResult ]
}
- Method [ <internal:couchbase> public method analyticsQuery ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> string $statement ]
- Parameter #1 [ <optional> ?Couchbase\AnalyticsOptions $queryOptions = <default> ]
- }
- - Return [ Couchbase\AnalyticsResult ]
- }
-
- Method [ <internal:couchbase> public method searchQuery ] {
-
- - Parameters [3] {
- Parameter #0 [ <required> string $indexName ]
- Parameter #1 [ <required> Couchbase\SearchQuery $query ]
- Parameter #2 [ <optional> ?Couchbase\SearchOptions $options = <default> ]
- }
- - Return [ Couchbase\SearchResult ]
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\Collection ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [3] {
- Property [ private $bucket = NULL ]
- Property [ private $scope = NULL ]
- Property [ private $name = NULL ]
- }
-
- - Methods [20] {
- Method [ <internal:couchbase, ctor> public method __construct ] {
-
- - Parameters [3] {
- Parameter #0 [ <required> Couchbase\Bucket $bucket ]
- Parameter #1 [ <optional> string $scope = <default> ]
- Parameter #2 [ <optional> string $name = <default> ]
- }
- }
-
- Method [ <internal:couchbase> public method name ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {
- Parameters [0] {
}
- Return [ string ]
}
- Method [ <internal:couchbase> public method get ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> string $id ]
- Parameter #1 [ <optional> ?Couchbase\GetOptions $options = <default> ]
- }
- - Return [ Couchbase\GetResult ]
- }
-
- Method [ <internal:couchbase> public method exists ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> string $id ]
- Parameter #1 [ <optional> ?Couchbase\ExistsOptions $options = <default> ]
- }
- - Return [ Couchbase\ExistsResult ]
- }
-
- Method [ <internal:couchbase> public method getAndLock ] {
-
- - Parameters [3] {
- Parameter #0 [ <required> string $id ]
- Parameter #1 [ <required> int $lockTime ]
- Parameter #2 [ <optional> ?Couchbase\GetAndLockOptions $options = <default> ]
- }
- - Return [ Couchbase\GetResult ]
- }
-
- Method [ <internal:couchbase> public method getAndTouch ] {
-
- - Parameters [3] {
- Parameter #0 [ <required> string $id ]
- Parameter #1 [ <required> int $expiry ]
- Parameter #2 [ <optional> ?Couchbase\GetAndTouchOptions $options = <default> ]
- }
- - Return [ Couchbase\GetResult ]
- }
-
- Method [ <internal:couchbase> public method getAnyReplica ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> string $id ]
- Parameter #1 [ <optional> ?Couchbase\GetAnyReplicaOptions $options = <default> ]
- }
- - Return [ Couchbase\GetReplicaResult ]
- }
-
- Method [ <internal:couchbase> public method getAllReplicas ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> string $id ]
- Parameter #1 [ <required> ?Couchbase\GetAllReplicasOptions $options ]
- }
- - Return [ array ]
- }
-
- Method [ <internal:couchbase> public method upsert ] {
-
- - Parameters [3] {
- Parameter #0 [ <required> string $id ]
- Parameter #1 [ <required> $value ]
- Parameter #2 [ <optional> ?Couchbase\UpsertOptions $options = <default> ]
- }
- - Return [ Couchbase\MutationResult ]
- }
-
- Method [ <internal:couchbase> public method insert ] {
-
- - Parameters [3] {
- Parameter #0 [ <required> string $id ]
- Parameter #1 [ <required> $value ]
- Parameter #2 [ <optional> ?Couchbase\InsertOptions $options = <default> ]
- }
- - Return [ Couchbase\MutationResult ]
- }
-
- Method [ <internal:couchbase> public method replace ] {
-
- - Parameters [3] {
- Parameter #0 [ <required> string $id ]
- Parameter #1 [ <required> $value ]
- Parameter #2 [ <optional> ?Couchbase\ReplaceOptions $options = <default> ]
- }
- - Return [ Couchbase\MutationResult ]
- }
-
- Method [ <internal:couchbase> public method remove ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> string $id ]
- Parameter #1 [ <optional> ?Couchbase\RemoveOptions $options = <default> ]
- }
- - Return [ Couchbase\MutationResult ]
- }
-
- Method [ <internal:couchbase> public method unlock ] {
-
- - Parameters [3] {
- Parameter #0 [ <required> string $id ]
- Parameter #1 [ <required> string $cas ]
- Parameter #2 [ <optional> ?Couchbase\UnlockOptions $options = <default> ]
- }
- - Return [ Couchbase\Result ]
- }
-
- Method [ <internal:couchbase> public method touch ] {
-
- - Parameters [3] {
- Parameter #0 [ <required> string $id ]
- Parameter #1 [ <required> int $expiry ]
- Parameter #2 [ <optional> ?Couchbase\TouchOptions $options = <default> ]
- }
- - Return [ Couchbase\Result ]
- }
-
- Method [ <internal:couchbase> public method lookupIn ] {
-
- - Parameters [3] {
- Parameter #0 [ <required> string $id ]
- Parameter #1 [ <required> array $specs ]
- Parameter #2 [ <optional> ?Couchbase\LookupInOptions $options = <default> ]
- }
- - Return [ Couchbase\LookupInResult ]
- }
-
- Method [ <internal:couchbase> public method mutateIn ] {
-
- - Parameters [3] {
- Parameter #0 [ <required> string $id ]
- Parameter #1 [ <required> array $specs ]
- Parameter #2 [ <optional> ?Couchbase\MutateInOptions $options = <default> ]
- }
- - Return [ Couchbase\MutateInResult ]
- }
-
- Method [ <internal:couchbase> public method getMulti ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> array $ids ]
- Parameter #1 [ <optional> ?Couchbase\GetOptions $options = <default> ]
- }
- - Return [ array ]
- }
-
- Method [ <internal:couchbase> public method removeMulti ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {
- - Parameters [2] {
- Parameter #0 [ <required> array $ids ]
- Parameter #1 [ <optional> ?Couchbase\RemoveOptions $options = <default> ]
+ - Parameters [0] {
}
- - Return [ array ]
+ - Return [ int ]
}
- Method [ <internal:couchbase> public method upsertMulti ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {
- - Parameters [2] {
- Parameter #0 [ <required> array $ids ]
- Parameter #1 [ <optional> ?Couchbase\UpsertOptions $options = <default> ]
+ - Parameters [0] {
}
- Return [ array ]
}
- Method [ <internal:couchbase> public method binary ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {
- Parameters [0] {
}
- - Return [ Couchbase\BinaryCollection ]
+ - Return [ ?Throwable ]
}
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\BinaryCollection ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
- - Static methods [0] {
- }
-
- - Properties [3] {
- Property [ private $bucket = NULL ]
- Property [ private $scope = NULL ]
- Property [ private $name = NULL ]
- }
-
- - Methods [5] {
- Method [ <internal:couchbase> public method name ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {
- Parameters [0] {
}
- Return [ string ]
}
- Method [ <internal:couchbase> public method append ] {
-
- - Parameters [3] {
- Parameter #0 [ <required> string $id ]
- Parameter #1 [ <required> string $value ]
- Parameter #2 [ <optional> ?Couchbase\AppendOptions $options = <default> ]
- }
- - Return [ Couchbase\MutationResult ]
- }
-
- Method [ <internal:couchbase> public method prepend ] {
-
- - Parameters [3] {
- Parameter #0 [ <required> string $id ]
- Parameter #1 [ <required> string $value ]
- Parameter #2 [ <optional> ?Couchbase\PrependOptions $options = <default> ]
- }
- - Return [ Couchbase\MutationResult ]
- }
-
- Method [ <internal:couchbase> public method increment ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> string $id ]
- Parameter #1 [ <optional> ?Couchbase\IncrementOptions $options = <default> ]
- }
- - Return [ Couchbase\CounterResult ]
- }
-
- Method [ <internal:couchbase> public method decrement ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> string $id ]
- Parameter #1 [ <optional> ?Couchbase\DecrementOptions $options = <default> ]
- }
- - Return [ Couchbase\CounterResult ]
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\Scope ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [2] {
- Property [ private $bucket = NULL ]
- Property [ private $name = NULL ]
- }
-
- - Methods [5] {
- Method [ <internal:couchbase, ctor> public method __construct ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> Couchbase\Bucket $bucket ]
- Parameter #1 [ <optional> string $name = <default> ]
- }
- }
-
- Method [ <internal:couchbase> public method name ] {
+ Method [ <internal:Core, inherits Exception, prototype Stringable> public method __toString ] {
- Parameters [0] {
}
- Return [ string ]
}
-
- Method [ <internal:couchbase> public method collection ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $name ]
- }
- - Return [ Couchbase\Collection ]
- }
-
- Method [ <internal:couchbase> public method query ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> string $statement ]
- Parameter #1 [ <optional> ?Couchbase\QueryOptions $queryOptions = <default> ]
- }
- - Return [ Couchbase\QueryResult ]
- }
-
- Method [ <internal:couchbase> public method analyticsQuery ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> string $statement ]
- Parameter #1 [ <optional> ?Couchbase\AnalyticsOptions $queryOptions = <default> ]
- }
- - Return [ Couchbase\AnalyticsResult ]
- }
}
}
- Class [ <internal:couchbase> class Couchbase\BucketManager ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\ScopeExistsException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -7860,286 +5797,94 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [1] {
- Property [ private $cluster = NULL ]
+ - Properties [4] {
+ Property [ protected $message = '' ]
+ Property [ protected $code = 0 ]
+ Property [ protected $file = NULL ]
+ Property [ protected $line = NULL ]
}
- - Methods [5] {
- Method [ <internal:couchbase> public method createBucket ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> Couchbase\BucketSettings $settings ]
- Parameter #1 [ <optional> $options = <default> ]
- }
- }
-
- Method [ <internal:couchbase> public method removeBucket ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $name ]
- }
- }
-
- Method [ <internal:couchbase> public method getBucket ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $name ]
- }
- - Return [ Couchbase\BucketSettings ]
- }
-
- Method [ <internal:couchbase> public method getAllBuckets ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- Return [ array ]
}
- Method [ <internal:couchbase> public method flush ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $name ]
- }
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\BucketSettings ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [11] {
- Property [ private $name = NULL ]
- Property [ private $flush_enabled = NULL ]
- Property [ private $ram_quota_mb = NULL ]
- Property [ private $num_replicas = NULL ]
- Property [ private $replica_indexes = NULL ]
- Property [ private $bucket_type = NULL ]
- Property [ private $eviction_policy = NULL ]
- Property [ private $max_ttl = NULL ]
- Property [ private $compression_mode = NULL ]
- Property [ private $storage_backend = NULL ]
- Property [ private $minimal_durability_level = NULL ]
- }
-
- - Methods [22] {
- Method [ <internal:couchbase> public method name ] {
-
- - Parameters [0] {
- }
- - Return [ string ]
- }
-
- Method [ <internal:couchbase> public method setName ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $name ]
- }
- - Return [ Couchbase\BucketSettings ]
- }
-
- Method [ <internal:couchbase> public method flushEnabled ] {
-
- - Parameters [0] {
- }
- - Return [ bool ]
- }
-
- Method [ <internal:couchbase> public method enableFlush ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> bool $enable ]
- }
- - Return [ Couchbase\BucketSettings ]
- }
-
- Method [ <internal:couchbase> public method ramQuotaMb ] {
-
- - Parameters [0] {
- }
- - Return [ int ]
- }
-
- Method [ <internal:couchbase> public method setRamQuotaMb ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $sizeInMb ]
- }
- - Return [ Couchbase\BucketSettings ]
- }
-
- Method [ <internal:couchbase> public method numReplicas ] {
-
- - Parameters [0] {
- }
- - Return [ int ]
- }
-
- Method [ <internal:couchbase> public method setNumReplicas ] {
+ Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
- - Parameters [1] {
- Parameter #0 [ <required> int $numberReplicas ]
+ - Parameters [3] {
+ Parameter #0 [ <optional> string $message = "" ]
+ Parameter #1 [ <optional> int $code = 0 ]
+ Parameter #2 [ <optional> ?Throwable $previous = null ]
}
- - Return [ Couchbase\BucketSettings ]
}
- Method [ <internal:couchbase> public method replicaIndexes ] {
+ Method [ <internal:Core, inherits Exception> public method __wakeup ] {
- Parameters [0] {
}
- - Return [ bool ]
}
- Method [ <internal:couchbase> public method enableReplicaIndexes ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> bool $enable ]
- }
- - Return [ Couchbase\BucketSettings ]
- }
-
- Method [ <internal:couchbase> public method bucketType ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {
- Parameters [0] {
}
- Return [ string ]
}
- Method [ <internal:couchbase> public method setBucketType ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {
- - Parameters [1] {
- Parameter #0 [ <required> string $type ]
+ - Parameters [0] {
}
- - Return [ Couchbase\BucketSettings ]
}
- Method [ <internal:couchbase> public method evictionPolicy ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {
- Parameters [0] {
}
- Return [ string ]
}
- Method [ <internal:couchbase> public method setEvictionPolicy ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $method ]
- }
- - Return [ Couchbase\BucketSettings ]
- }
-
- Method [ <internal:couchbase> public method maxTtl ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {
- Parameters [0] {
}
- Return [ int ]
}
- Method [ <internal:couchbase> public method setMaxTtl ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $ttlSeconds ]
- }
- - Return [ Couchbase\BucketSettings ]
- }
-
- Method [ <internal:couchbase> public method compressionMode ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {
- Parameters [0] {
}
- - Return [ string ]
+ - Return [ array ]
}
- Method [ <internal:couchbase> public method setCompressionMode ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {
- - Parameters [1] {
- Parameter #0 [ <required> string $mode ]
+ - Parameters [0] {
}
- - Return [ Couchbase\BucketSettings ]
+ - Return [ ?Throwable ]
}
- Method [ <internal:couchbase> public method minimalDurabilityLevel ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {
- Parameters [0] {
}
- Return [ string ]
}
- Method [ <internal:couchbase> public method setMinimalDurabilityLevel ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $mode ]
- }
- - Return [ Couchbase\BucketSettings ]
- }
-
- Method [ <internal, deprecated:couchbase> public method ejectionMethod ] {
+ Method [ <internal:Core, inherits Exception, prototype Stringable> public method __toString ] {
- Parameters [0] {
}
- Return [ string ]
}
-
- Method [ <internal, deprecated:couchbase> public method setEjectionMethod ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $method ]
- }
- - Return [ Couchbase\BucketSettings ]
- }
}
}
- Interface [ <internal:couchbase> interface Couchbase\EvictionPolicy ] {
-
- - Constants [4] {
- Constant [ public string FULL ] { fullEviction }
- Constant [ public string VALUE_ONLY ] { valueOnly }
- Constant [ public string NO_EVICTION ] { noEviction }
- Constant [ public string NOT_RECENTLY_USED ] { nruEviction }
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [0] {
- }
-
- - Methods [0] {
- }
- }
-
- Interface [ <internal:couchbase> interface Couchbase\StorageBackend ] {
-
- - Constants [2] {
- Constant [ public string COUCHSTORE ] { couchstore }
- Constant [ public string MAGMA ] { magma }
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [0] {
- }
-
- - Methods [0] {
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\UserManager ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\ScopeNotFoundException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -8150,196 +5895,85 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [1] {
- Property [ private $cluster = NULL ]
+ - Properties [4] {
+ Property [ protected $message = '' ]
+ Property [ protected $code = 0 ]
+ Property [ protected $file = NULL ]
+ Property [ protected $line = NULL ]
}
- - Methods [9] {
- Method [ <internal:couchbase> public method getUser ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> string $name ]
- Parameter #1 [ <optional> ?Couchbase\GetUserOptions $options = <default> ]
- }
- - Return [ Couchbase\UserAndMetadata ]
- }
-
- Method [ <internal:couchbase> public method getAllUsers ] {
-
- - Parameters [1] {
- Parameter #0 [ <optional> ?Couchbase\GetAllUsersOptions $options = <default> ]
- }
- - Return [ array ]
- }
-
- Method [ <internal:couchbase> public method upsertUser ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> Couchbase\User $user ]
- Parameter #1 [ <optional> ?Couchbase\UpsertUserOptions $options = <default> ]
- }
- }
-
- Method [ <internal:couchbase> public method dropUser ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> string $name ]
- Parameter #1 [ <optional> ?Couchbase\DropUserOptions $options = <default> ]
- }
- }
-
- Method [ <internal:couchbase> public method getRoles ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- Return [ array ]
}
- Method [ <internal:couchbase> public method getGroup ] {
+ Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
- - Parameters [1] {
- Parameter #0 [ <optional> string $name = <default> ]
+ - Parameters [3] {
+ Parameter #0 [ <optional> string $message = "" ]
+ Parameter #1 [ <optional> int $code = 0 ]
+ Parameter #2 [ <optional> ?Throwable $previous = null ]
}
- - Return [ Couchbase\Group ]
}
- Method [ <internal:couchbase> public method getAllGroups ] {
+ Method [ <internal:Core, inherits Exception> public method __wakeup ] {
- Parameters [0] {
}
- - Return [ array ]
}
- Method [ <internal:couchbase> public method upsertGroup ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> Couchbase\Group $group ]
- }
- }
-
- Method [ <internal:couchbase> public method dropGroup ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $name ]
- }
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\Role ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [4] {
- Property [ private $name = NULL ]
- Property [ private $bucket = NULL ]
- Property [ private $scope = NULL ]
- Property [ private $collection = NULL ]
- }
-
- - Methods [8] {
- Method [ <internal:couchbase> public method name ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {
- Parameters [0] {
}
- Return [ string ]
}
- Method [ <internal:couchbase> public method bucket ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {
- Parameters [0] {
}
- - Return [ ?string ]
}
- Method [ <internal:couchbase> public method scope ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {
- Parameters [0] {
}
- - Return [ ?string ]
+ - Return [ string ]
}
- Method [ <internal:couchbase> public method collection ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {
- Parameters [0] {
}
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase> public method setName ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $name ]
- }
- - Return [ Couchbase\Role ]
- }
-
- Method [ <internal:couchbase> public method setBucket ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $bucket ]
- }
- - Return [ Couchbase\Role ]
- }
-
- Method [ <internal:couchbase> public method setScope ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $scope ]
- }
- - Return [ Couchbase\Role ]
+ - Return [ int ]
}
- Method [ <internal:couchbase> public method setCollection ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {
- - Parameters [1] {
- Parameter #0 [ <required> string $collection ]
+ - Parameters [0] {
}
- - Return [ Couchbase\Role ]
+ - Return [ array ]
}
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\RoleAndDescription ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
- - Static methods [0] {
- }
-
- - Properties [3] {
- Property [ private $role = NULL ]
- Property [ private $display_name = NULL ]
- Property [ private $description = NULL ]
- }
-
- - Methods [3] {
- Method [ <internal:couchbase> public method role ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {
- Parameters [0] {
}
- - Return [ Couchbase\Role ]
+ - Return [ ?Throwable ]
}
- Method [ <internal:couchbase> public method displayName ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {
- Parameters [0] {
}
- Return [ string ]
}
- Method [ <internal:couchbase> public method description ] {
+ Method [ <internal:Core, inherits Exception, prototype Stringable> public method __toString ] {
- Parameters [0] {
}
@@ -8348,7 +5982,7 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
}
- Class [ <internal:couchbase> class Couchbase\Origin ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\ServiceNotAvailableException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -8359,152 +5993,94 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [2] {
- Property [ private $type = NULL ]
- Property [ private $name = NULL ]
+ - Properties [4] {
+ Property [ protected $message = '' ]
+ Property [ protected $code = 0 ]
+ Property [ protected $file = NULL ]
+ Property [ protected $line = NULL ]
}
- - Methods [2] {
- Method [ <internal:couchbase> public method type ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ string ]
+ - Return [ array ]
}
- Method [ <internal:couchbase> public method name ] {
+ Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
- - Parameters [0] {
+ - Parameters [3] {
+ Parameter #0 [ <optional> string $message = "" ]
+ Parameter #1 [ <optional> int $code = 0 ]
+ Parameter #2 [ <optional> ?Throwable $previous = null ]
}
- - Return [ string ]
}
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\RoleAndOrigins ] {
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [2] {
- Property [ private $role = NULL ]
- Property [ private $origins = NULL ]
- }
-
- - Methods [2] {
- Method [ <internal:couchbase> public method role ] {
+ Method [ <internal:Core, inherits Exception> public method __wakeup ] {
- Parameters [0] {
}
- - Return [ Couchbase\Role ]
}
- Method [ <internal:couchbase> public method origins ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {
- Parameters [0] {
}
- - Return [ array ]
+ - Return [ string ]
}
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\User ] {
-
- - Constants [0] {
- }
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [5] {
- Property [ private $username = NULL ]
- Property [ private $password = NULL ]
- Property [ private $display_name = NULL ]
- Property [ private $groups = NULL ]
- Property [ private $roles = NULL ]
- }
-
- - Methods [9] {
- Method [ <internal:couchbase> public method username ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {
- Parameters [0] {
}
- - Return [ string ]
}
- Method [ <internal:couchbase> public method displayName ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {
- Parameters [0] {
}
- Return [ string ]
}
- Method [ <internal:couchbase> public method groups ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {
- Parameters [0] {
}
- - Return [ array ]
+ - Return [ int ]
}
- Method [ <internal:couchbase> public method roles ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {
- Parameters [0] {
}
- Return [ array ]
}
- Method [ <internal:couchbase> public method setUsername ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $username ]
- }
- - Return [ Couchbase\User ]
- }
-
- Method [ <internal:couchbase> public method setPassword ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $password ]
- }
- - Return [ Couchbase\User ]
- }
-
- Method [ <internal:couchbase> public method setDisplayName ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {
- - Parameters [1] {
- Parameter #0 [ <required> string $name ]
+ - Parameters [0] {
}
- - Return [ Couchbase\User ]
+ - Return [ ?Throwable ]
}
- Method [ <internal:couchbase> public method setGroups ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {
- - Parameters [1] {
- Parameter #0 [ <required> array $groups ]
+ - Parameters [0] {
}
- - Return [ Couchbase\User ]
+ - Return [ string ]
}
- Method [ <internal:couchbase> public method setRoles ] {
+ Method [ <internal:Core, inherits Exception, prototype Stringable> public method __toString ] {
- - Parameters [1] {
- Parameter #0 [ <required> array $roles ]
+ - Parameters [0] {
}
- - Return [ Couchbase\User ]
+ - Return [ string ]
}
}
}
- Class [ <internal:couchbase> class Couchbase\UserAndMetadata ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\TemporaryFailureException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -8515,230 +6091,94 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [5] {
- Property [ private $domain = NULL ]
- Property [ private $user = NULL ]
- Property [ private $effective_roles = NULL ]
- Property [ private $password_changed = NULL ]
- Property [ private $external_groups = NULL ]
+ - Properties [4] {
+ Property [ protected $message = '' ]
+ Property [ protected $code = 0 ]
+ Property [ protected $file = NULL ]
+ Property [ protected $line = NULL ]
}
- - Methods [5] {
- Method [ <internal:couchbase> public method domain ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ string ]
+ - Return [ array ]
}
- Method [ <internal:couchbase> public method user ] {
+ Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
- - Parameters [0] {
+ - Parameters [3] {
+ Parameter #0 [ <optional> string $message = "" ]
+ Parameter #1 [ <optional> int $code = 0 ]
+ Parameter #2 [ <optional> ?Throwable $previous = null ]
}
- - Return [ Couchbase\User ]
}
- Method [ <internal:couchbase> public method effectiveRoles ] {
+ Method [ <internal:Core, inherits Exception> public method __wakeup ] {
- Parameters [0] {
}
- - Return [ array ]
}
- Method [ <internal:couchbase> public method passwordChanged ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {
- Parameters [0] {
}
- Return [ string ]
}
- Method [ <internal:couchbase> public method externalGroups ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {
- Parameters [0] {
}
- - Return [ array ]
}
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\Group ] {
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [4] {
- Property [ private $name = NULL ]
- Property [ private $description = NULL ]
- Property [ private $roles = NULL ]
- Property [ private $ldap_group_reference = NULL ]
- }
-
- - Methods [7] {
- Method [ <internal:couchbase> public method name ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {
- Parameters [0] {
}
- Return [ string ]
}
- Method [ <internal:couchbase> public method description ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {
- Parameters [0] {
}
- - Return [ string ]
+ - Return [ int ]
}
- Method [ <internal:couchbase> public method roles ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {
- Parameters [0] {
}
- Return [ array ]
}
- Method [ <internal:couchbase> public method ldapGroupReference ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {
- Parameters [0] {
}
- - Return [ ?string ]
- }
-
- Method [ <internal:couchbase> public method setName ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $name ]
- }
- - Return [ Couchbase\Group ]
- }
-
- Method [ <internal:couchbase> public method setDescription ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $description ]
- }
- - Return [ Couchbase\Group ]
- }
-
- Method [ <internal:couchbase> public method setRoles ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> array $roles ]
- }
- - Return [ Couchbase\Group ]
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\GetAllUsersOptions ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [1] {
- Property [ private $domain_name = NULL ]
- }
-
- - Methods [1] {
- Method [ <internal:couchbase> public method domainName ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $domainName ]
- }
- - Return [ Couchbase\GetAllUsersOptions ]
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\GetUserOptions ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [1] {
- Property [ private $domain_name = NULL ]
- }
-
- - Methods [1] {
- Method [ <internal:couchbase> public method domainName ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $domainName ]
- }
- - Return [ Couchbase\GetUserOptions ]
+ - Return [ ?Throwable ]
}
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\DropUserOptions ] {
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [1] {
- Property [ private $domain_name = NULL ]
- }
-
- - Methods [1] {
- Method [ <internal:couchbase> public method domainName ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {
- - Parameters [1] {
- Parameter #0 [ <required> string $domainName ]
+ - Parameters [0] {
}
- - Return [ Couchbase\DropUserOptions ]
+ - Return [ string ]
}
- }
- }
- Class [ <internal:couchbase> class Couchbase\UpsertUserOptions ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [1] {
- Property [ private $domain_name = NULL ]
- }
-
- - Methods [1] {
- Method [ <internal:couchbase> public method domainName ] {
+ Method [ <internal:Core, inherits Exception, prototype Stringable> public method __toString ] {
- - Parameters [1] {
- Parameter #0 [ <required> string $domainName ]
+ - Parameters [0] {
}
- - Return [ Couchbase\UpsertUserOptions ]
+ - Return [ string ]
}
}
}
- Class [ <internal:couchbase> class Couchbase\Bucket ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\UnsupportedOperationException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -8749,255 +6189,94 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [0] {
+ - Properties [4] {
+ Property [ protected $message = '' ]
+ Property [ protected $code = 0 ]
+ Property [ protected $file = NULL ]
+ Property [ protected $line = NULL ]
}
- - Methods [13] {
- Method [ <internal:couchbase, ctor> private method __construct ] {
-
- - Parameters [0] {
- }
- }
-
- Method [ <internal:couchbase> public method __get ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> $name ]
- }
- }
-
- Method [ <internal:couchbase> public method __set ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> $name ]
- Parameter #1 [ <required> $value ]
- }
- }
-
- Method [ <internal:couchbase> public method setTranscoder ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> callable $encoder ]
- Parameter #1 [ <required> callable $decoder ]
- }
- }
-
- Method [ <internal:couchbase> public method name ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ string ]
+ - Return [ array ]
}
- Method [ <internal:couchbase> public method viewQuery ] {
+ Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
- Parameters [3] {
- Parameter #0 [ <required> string $designDoc ]
- Parameter #1 [ <required> string $viewName ]
- Parameter #2 [ <optional> ?Couchbase\ViewOptions $viewOptions = <default> ]
- }
- - Return [ Couchbase\ViewResult ]
- }
-
- Method [ <internal:couchbase> public method ping ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> $services ]
- Parameter #1 [ <required> $reportId ]
- }
- }
-
- Method [ <internal:couchbase> public method diagnostics ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> $reportId ]
+ Parameter #0 [ <optional> string $message = "" ]
+ Parameter #1 [ <optional> int $code = 0 ]
+ Parameter #2 [ <optional> ?Throwable $previous = null ]
}
}
- Method [ <internal:couchbase> public method defaultCollection ] {
+ Method [ <internal:Core, inherits Exception> public method __wakeup ] {
- Parameters [0] {
}
- - Return [ Couchbase\Collection ]
}
- Method [ <internal:couchbase> public method defaultScope ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {
- Parameters [0] {
}
- - Return [ Couchbase\Scope ]
- }
-
- Method [ <internal:couchbase> public method scope ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $name ]
- }
- - Return [ Couchbase\Scope ]
+ - Return [ string ]
}
- Method [ <internal:couchbase> public method collections ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {
- Parameters [0] {
}
- - Return [ Couchbase\CollectionManager ]
}
- Method [ <internal:couchbase> public method viewIndexes ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {
- Parameters [0] {
}
- - Return [ Couchbase\ViewIndexManager ]
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\CollectionManager ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [1] {
- Property [ private $bucket = NULL ]
- }
-
- - Methods [6] {
- Method [ <internal, deprecated:couchbase> public method getScope ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $name ]
- }
- - Return [ Couchbase\ScopeSpec ]
+ - Return [ string ]
}
- Method [ <internal:couchbase> public method getAllScopes ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {
- Parameters [0] {
}
- - Return [ array ]
- }
-
- Method [ <internal:couchbase> public method createScope ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $name ]
- }
- }
-
- Method [ <internal:couchbase> public method dropScope ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $name ]
- }
- }
-
- Method [ <internal:couchbase> public method createCollection ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> Couchbase\CollectionSpec $collection ]
- }
- }
-
- Method [ <internal:couchbase> public method dropCollection ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> Couchbase\CollectionSpec $collection ]
- }
+ - Return [ int ]
}
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\ScopeSpec ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
- - Static methods [0] {
- }
-
- - Properties [3] {
- Property [ private $uid = NULL ]
- Property [ private $name = NULL ]
- Property [ private $collections = NULL ]
- }
-
- - Methods [2] {
- Method [ <internal:couchbase> public method name ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {
- Parameters [0] {
}
- - Return [ string ]
+ - Return [ array ]
}
- Method [ <internal:couchbase> public method collections ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {
- Parameters [0] {
}
- - Return [ array ]
+ - Return [ ?Throwable ]
}
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\CollectionSpec ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
- - Static methods [0] {
- }
-
- - Properties [3] {
- Property [ private $name = NULL ]
- Property [ private $scope_name = NULL ]
- Property [ private $max_expiry = NULL ]
- }
-
- - Methods [4] {
- Method [ <internal:couchbase> public method name ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {
- Parameters [0] {
}
- Return [ string ]
}
- Method [ <internal:couchbase> public method scopeName ] {
+ Method [ <internal:Core, inherits Exception, prototype Stringable> public method __toString ] {
- Parameters [0] {
}
- Return [ string ]
}
-
- Method [ <internal:couchbase> public method setName ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $name ]
- }
- - Return [ Couchbase\CollectionSpec ]
- }
-
- Method [ <internal:couchbase> public method setScopeName ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $name ]
- }
- - Return [ Couchbase\CollectionSpec ]
- }
}
}
- Class [ <internal:couchbase> class Couchbase\AnalyticsIndexManager ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\UserExistsException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -9008,502 +6287,94 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [1] {
- Property [ private $cluster = NULL ]
+ - Properties [4] {
+ Property [ protected $message = '' ]
+ Property [ protected $code = 0 ]
+ Property [ protected $file = NULL ]
+ Property [ protected $line = NULL ]
}
- - Methods [15] {
- Method [ <internal:couchbase> public method createDataverse ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> string $dataverseName ]
- Parameter #1 [ <optional> ?Couchbase\CreateAnalyticsDataverseOptions $options = <default> ]
- }
- }
-
- Method [ <internal:couchbase> public method dropDataverse ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> string $dataverseName ]
- Parameter #1 [ <optional> ?Couchbase\DropAnalyticsDataverseOptions $options = <default> ]
- }
- }
-
- Method [ <internal:couchbase> public method createDataset ] {
-
- - Parameters [3] {
- Parameter #0 [ <required> string $datasetName ]
- Parameter #1 [ <required> string $bucketName ]
- Parameter #2 [ <optional> ?Couchbase\CreateAnalyticsDatasetOptions $options = <default> ]
- }
- }
-
- Method [ <internal:couchbase> public method dropDataset ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> string $datasetName ]
- Parameter #1 [ <optional> ?Couchbase\DropAnalyticsDatasetOptions $options = <default> ]
- }
- }
-
- Method [ <internal:couchbase> public method getAllDatasets ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- Return [ array ]
}
- Method [ <internal:couchbase> public method createIndex ] {
-
- - Parameters [4] {
- Parameter #0 [ <required> string $datasetName ]
- Parameter #1 [ <required> string $indexName ]
- Parameter #2 [ <required> array $fields ]
- Parameter #3 [ <optional> ?Couchbase\CreateAnalyticsIndexOptions $options = <default> ]
- }
- }
-
- Method [ <internal:couchbase> public method dropIndex ] {
+ Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
- Parameters [3] {
- Parameter #0 [ <required> string $datasetName ]
- Parameter #1 [ <required> string $indexName ]
- Parameter #2 [ <required> ?Couchbase\DropAnalyticsIndexOptions $options ]
- }
- }
-
- Method [ <internal:couchbase> public method getAllIndexes ] {
-
- - Parameters [0] {
- }
- - Return [ array ]
- }
-
- Method [ <internal:couchbase> public method connectLink ] {
-
- - Parameters [1] {
- Parameter #0 [ <optional> ?Couchbase\ConnectAnalyticsLinkOptions $options = <default> ]
- }
- }
-
- Method [ <internal:couchbase> public method disconnectLink ] {
-
- - Parameters [1] {
- Parameter #0 [ <optional> ?Couchbase\DisconnectAnalyticsLinkOptions $options = <default> ]
+ Parameter #0 [ <optional> string $message = "" ]
+ Parameter #1 [ <optional> int $code = 0 ]
+ Parameter #2 [ <optional> ?Throwable $previous = null ]
}
}
- Method [ <internal:couchbase> public method getPendingMutations ] {
+ Method [ <internal:Core, inherits Exception> public method __wakeup ] {
- Parameters [0] {
}
- - Return [ array ]
}
- Method [ <internal:couchbase> public method createLink ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> Couchbase\AnalyticsLink $link ]
- Parameter #1 [ <optional> ?Couchbase\CreateAnalyticsLinkOptions $options = <default> ]
- }
- }
-
- Method [ <internal:couchbase> public method replaceLink ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> Couchbase\AnalyticsLink $link ]
- Parameter #1 [ <optional> ?Couchbase\ReplaceAnalyticsLinkOptions $options = <default> ]
- }
- }
-
- Method [ <internal:couchbase> public method dropLink ] {
-
- - Parameters [3] {
- Parameter #0 [ <required> string $linkName ]
- Parameter #1 [ <required> Couchbase\AnalyticsLink $dataverseName ]
- Parameter #2 [ <optional> ?Couchbase\DropAnalyticsLinkOptions $options = <default> ]
- }
- }
-
- Method [ <internal:couchbase> public method getLinks ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> ?Couchbase\GetAnalyticsLinksOptions $options ]
- }
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\AnalyticsDataset ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [4] {
- Property [ private $name = NULL ]
- Property [ private $dataverse_name = NULL ]
- Property [ private $link_name = NULL ]
- Property [ private $bucket_name = NULL ]
- }
-
- - Methods [4] {
- Method [ <internal:couchbase> public method name ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {
- Parameters [0] {
}
- Return [ string ]
}
- Method [ <internal:couchbase> public method dataverseName ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {
- Parameters [0] {
}
- - Return [ string ]
}
- Method [ <internal:couchbase> public method linkName ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {
- Parameters [0] {
}
- Return [ string ]
}
- Method [ <internal:couchbase> public method bucketName ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {
- Parameters [0] {
}
- - Return [ string ]
+ - Return [ int ]
}
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\AnalyticsIndex ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
- - Properties [4] {
- Property [ private $name = NULL ]
- Property [ private $dataverse_name = NULL ]
- Property [ private $link_name = NULL ]
- Property [ private $is_primary = NULL ]
- }
-
- - Methods [4] {
- Method [ <internal:couchbase> public method name ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {
- Parameters [0] {
}
- - Return [ string ]
+ - Return [ array ]
}
- Method [ <internal:couchbase> public method datasetName ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {
- Parameters [0] {
}
- - Return [ string ]
+ - Return [ ?Throwable ]
}
- Method [ <internal:couchbase> public method dataverseName ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {
- Parameters [0] {
}
- Return [ string ]
}
- Method [ <internal:couchbase> public method isPrimary ] {
+ Method [ <internal:Core, inherits Exception, prototype Stringable> public method __toString ] {
- Parameters [0] {
}
- - Return [ bool ]
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\CreateAnalyticsDataverseOptions ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [1] {
- Property [ private $ignore_if_exists = NULL ]
- }
-
- - Methods [1] {
- Method [ <internal:couchbase> public method ignoreIfExists ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> bool $shouldIgnore ]
- }
- - Return [ Couchbase\CreateAnalyticsDataverseOptions ]
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\DropAnalyticsDataverseOptions ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [1] {
- Property [ private $ignore_if_not_exists = NULL ]
- }
-
- - Methods [1] {
- Method [ <internal:couchbase> public method ignoreIfNotExists ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> bool $shouldIgnore ]
- }
- - Return [ Couchbase\DropAnalyticsDataverseOptions ]
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\CreateAnalyticsDatasetOptions ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [3] {
- Property [ private $ignore_if_exists = NULL ]
- Property [ private $condition = NULL ]
- Property [ private $dataverse_name = NULL ]
- }
-
- - Methods [3] {
- Method [ <internal:couchbase> public method ignoreIfExists ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> bool $shouldIgnore ]
- }
- - Return [ Couchbase\CreateAnalyticsDatasetOptions ]
- }
-
- Method [ <internal:couchbase> public method condition ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $condition ]
- }
- - Return [ Couchbase\CreateAnalyticsDatasetOptions ]
- }
-
- Method [ <internal:couchbase> public method dataverseName ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $dataverseName ]
- }
- - Return [ Couchbase\CreateAnalyticsDatasetOptions ]
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\DropAnalyticsDatasetOptions ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [2] {
- Property [ private $ignore_if_not_exists = NULL ]
- Property [ private $dataverse_name = NULL ]
- }
-
- - Methods [2] {
- Method [ <internal:couchbase> public method ignoreIfNotExists ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> bool $shouldIgnore ]
- }
- - Return [ Couchbase\DropAnalyticsDatasetOptions ]
- }
-
- Method [ <internal:couchbase> public method dataverseName ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $dataverseName ]
- }
- - Return [ Couchbase\DropAnalyticsDatasetOptions ]
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\CreateAnalyticsIndexOptions ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [2] {
- Property [ private $ignore_if_exists = NULL ]
- Property [ private $dataverse_name = NULL ]
- }
-
- - Methods [2] {
- Method [ <internal:couchbase> public method ignoreIfExists ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> bool $shouldIgnore ]
- }
- - Return [ Couchbase\CreateAnalyticsIndexOptions ]
- }
-
- Method [ <internal:couchbase> public method dataverseName ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $dataverseName ]
- }
- - Return [ Couchbase\CreateAnalyticsIndexOptions ]
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\DropAnalyticsIndexOptions ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [2] {
- Property [ private $ignore_if_not_exists = NULL ]
- Property [ private $dataverse_name = NULL ]
- }
-
- - Methods [2] {
- Method [ <internal:couchbase> public method ignoreIfNotExists ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> bool $shouldIgnore ]
- }
- - Return [ Couchbase\DropAnalyticsIndexOptions ]
- }
-
- Method [ <internal:couchbase> public method dataverseName ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $dataverseName ]
- }
- - Return [ Couchbase\DropAnalyticsIndexOptions ]
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\ConnectAnalyticsLinkOptions ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [2] {
- Property [ private $link_name = NULL ]
- Property [ private $dataverse_name = NULL ]
- }
-
- - Methods [2] {
- Method [ <internal:couchbase> public method dataverseName ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $dataverseName ]
- }
- - Return [ Couchbase\ConnectAnalyticsLinkOptions ]
- }
-
- Method [ <internal:couchbase> public method linkName ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $linkName ]
- }
- - Return [ Couchbase\ConnectAnalyticsLinkOptions ]
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\DisconnectAnalyticsLinkOptions ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [2] {
- Property [ private $link_name = NULL ]
- Property [ private $dataverse_name = NULL ]
- }
-
- - Methods [2] {
- Method [ <internal:couchbase> public method dataverseName ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $dataverseName ]
- }
- - Return [ Couchbase\DisconnectAnalyticsLinkOptions ]
- }
-
- Method [ <internal:couchbase> public method linkName ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $linkName ]
- }
- - Return [ Couchbase\DisconnectAnalyticsLinkOptions ]
+ - Return [ string ]
}
}
}
- Class [ <internal:couchbase> class Couchbase\EncryptionSettings ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\UserNotFoundException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -9515,384 +6386,93 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
- Properties [4] {
- Property [ private $level = NULL ]
- Property [ private $certificate = NULL ]
- Property [ private $client_certificate = NULL ]
- Property [ private $client_key = NULL ]
- }
-
- - Methods [4] {
- Method [ <internal:couchbase> public method level ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $level ]
- }
- - Return [ Couchbase\EncryptionSettings ]
- }
-
- Method [ <internal:couchbase> public method certificate ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $certificate ]
- }
- - Return [ Couchbase\EncryptionSettings ]
- }
-
- Method [ <internal:couchbase> public method clientCertificate ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $certificate ]
- }
- - Return [ Couchbase\EncryptionSettings ]
- }
-
- Method [ <internal:couchbase> public method clientKey ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $key ]
- }
- - Return [ Couchbase\EncryptionSettings ]
- }
- }
- }
-
- Interface [ <internal:couchbase> interface Couchbase\AnalyticsLink ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [0] {
- }
-
- - Methods [0] {
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\CouchbaseRemoteAnalyticsLink implements Couchbase\AnalyticsLink ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [6] {
- Property [ private $name = NULL ]
- Property [ private $dataverse = NULL ]
- Property [ private $hostname = NULL ]
- Property [ private $username = NULL ]
- Property [ private $password = NULL ]
- Property [ private $encryption = NULL ]
- }
-
- - Methods [6] {
- Method [ <internal:couchbase> public method name ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $name ]
- }
- - Return [ Couchbase\CouchbaseRemoteAnalyticsLink ]
- }
-
- Method [ <internal:couchbase> public method dataverse ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $dataverse ]
- }
- - Return [ Couchbase\CouchbaseRemoteAnalyticsLink ]
- }
-
- Method [ <internal:couchbase> public method hostname ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $hostname ]
- }
- - Return [ Couchbase\CouchbaseRemoteAnalyticsLink ]
- }
-
- Method [ <internal:couchbase> public method username ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $username ]
- }
- - Return [ Couchbase\CouchbaseRemoteAnalyticsLink ]
- }
-
- Method [ <internal:couchbase> public method password ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $password ]
- }
- - Return [ Couchbase\CouchbaseRemoteAnalyticsLink ]
- }
-
- Method [ <internal:couchbase> public method encryption ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> Couchbase\EncryptionSettings $settings ]
- }
- - Return [ Couchbase\CouchbaseRemoteAnalyticsLink ]
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\AzureBlobExternalAnalyticsLink implements Couchbase\AnalyticsLink ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [8] {
- Property [ private $name = NULL ]
- Property [ private $dataverse = NULL ]
- Property [ private $connection_string = NULL ]
- Property [ private $account_name = NULL ]
- Property [ private $account_key = NULL ]
- Property [ private $shared_access_signature = NULL ]
- Property [ private $blob_endpoint = NULL ]
- Property [ private $endpoint_suffix = NULL ]
+ Property [ protected $message = '' ]
+ Property [ protected $code = 0 ]
+ Property [ protected $file = NULL ]
+ Property [ protected $line = NULL ]
}
- - Methods [8] {
- Method [ <internal:couchbase> public method name ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $name ]
- }
- - Return [ Couchbase\AzureBlobExternalAnalyticsLink ]
- }
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Method [ <internal:couchbase> public method dataverse ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $dataverse ]
- }
- - Return [ Couchbase\AzureBlobExternalAnalyticsLink ]
- }
-
- Method [ <internal:couchbase> public method connectionString ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $connectionString ]
- }
- - Return [ Couchbase\AzureBlobExternalAnalyticsLink ]
- }
-
- Method [ <internal:couchbase> public method accountName ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $accountName ]
- }
- - Return [ Couchbase\AzureBlobExternalAnalyticsLink ]
- }
-
- Method [ <internal:couchbase> public method accountKey ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $accountKey ]
- }
- - Return [ Couchbase\AzureBlobExternalAnalyticsLink ]
- }
-
- Method [ <internal:couchbase> public method sharedAccessSignature ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $signature ]
- }
- - Return [ Couchbase\AzureBlobExternalAnalyticsLink ]
- }
-
- Method [ <internal:couchbase> public method blobEndpoint ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $blobEndpoint ]
- }
- - Return [ Couchbase\AzureBlobExternalAnalyticsLink ]
- }
-
- Method [ <internal:couchbase> public method endpointSuffix ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $endpointSuffix ]
+ - Parameters [0] {
}
- - Return [ Couchbase\AzureBlobExternalAnalyticsLink ]
+ - Return [ array ]
}
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\S3ExternalAnalyticsLink implements Couchbase\AnalyticsLink ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [7] {
- Property [ private $name = NULL ]
- Property [ private $dataverse = NULL ]
- Property [ private $access_key_id = NULL ]
- Property [ private $secret_access_key = NULL ]
- Property [ private $region = NULL ]
- Property [ private $session_token = NULL ]
- Property [ private $service_endpoint = NULL ]
- }
- - Methods [7] {
- Method [ <internal:couchbase> public method name ] {
+ Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
- - Parameters [1] {
- Parameter #0 [ <required> string $name ]
+ - Parameters [3] {
+ Parameter #0 [ <optional> string $message = "" ]
+ Parameter #1 [ <optional> int $code = 0 ]
+ Parameter #2 [ <optional> ?Throwable $previous = null ]
}
- - Return [ Couchbase\S3ExternalAnalyticsLink ]
}
- Method [ <internal:couchbase> public method dataverse ] {
+ Method [ <internal:Core, inherits Exception> public method __wakeup ] {
- - Parameters [1] {
- Parameter #0 [ <required> string $dataverse ]
+ - Parameters [0] {
}
- - Return [ Couchbase\S3ExternalAnalyticsLink ]
}
- Method [ <internal:couchbase> public method accessKeyId ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {
- - Parameters [1] {
- Parameter #0 [ <required> string $accessKeyId ]
+ - Parameters [0] {
}
- - Return [ Couchbase\S3ExternalAnalyticsLink ]
+ - Return [ string ]
}
- Method [ <internal:couchbase> public method secretAccessKey ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {
- - Parameters [1] {
- Parameter #0 [ <required> string $secretAccessKey ]
+ - Parameters [0] {
}
- - Return [ Couchbase\S3ExternalAnalyticsLink ]
}
- Method [ <internal:couchbase> public method region ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {
- - Parameters [1] {
- Parameter #0 [ <required> string $region ]
+ - Parameters [0] {
}
- - Return [ Couchbase\S3ExternalAnalyticsLink ]
+ - Return [ string ]
}
- Method [ <internal:couchbase> public method sessionToken ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {
- - Parameters [1] {
- Parameter #0 [ <required> string $sessionToken ]
+ - Parameters [0] {
}
- - Return [ Couchbase\S3ExternalAnalyticsLink ]
+ - Return [ int ]
}
- Method [ <internal:couchbase> public method serviceEndpoint ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {
- - Parameters [1] {
- Parameter #0 [ <required> string $serviceEndpoint ]
+ - Parameters [0] {
}
- - Return [ Couchbase\S3ExternalAnalyticsLink ]
+ - Return [ array ]
}
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\CreateAnalyticsLinkOptions ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
- - Static methods [0] {
- }
-
- - Properties [1] {
- Property [ private $timeout = NULL ]
- }
-
- - Methods [1] {
- Method [ <internal:couchbase> public method timeout ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {
- - Parameters [1] {
- Parameter #0 [ <required> string $timeout ]
+ - Parameters [0] {
}
- - Return [ Couchbase\CreateAnalyticsLinkOptions ]
+ - Return [ ?Throwable ]
}
- }
- }
- Class [ <internal:couchbase> class Couchbase\ReplaceAnalyticLinkOptions ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [1] {
- Property [ private $timeout = NULL ]
- }
-
- - Methods [1] {
- Method [ <internal:couchbase> public method timeout ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {
- - Parameters [1] {
- Parameter #0 [ <required> string $timeout ]
+ - Parameters [0] {
}
- - Return [ Couchbase\ReplaceAnalyticsLinkOptions ]
+ - Return [ string ]
}
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\DropAnalyticsLinkOptions ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
- - Properties [1] {
- Property [ private $timeout = NULL ]
- }
-
- - Methods [1] {
- Method [ <internal:couchbase> public method timeout ] {
+ Method [ <internal:Core, inherits Exception, prototype Stringable> public method __toString ] {
- - Parameters [1] {
- Parameter #0 [ <required> string $timeout ]
+ - Parameters [0] {
}
- - Return [ Couchbase\DropAnalyticsLinkOptions ]
+ - Return [ string ]
}
}
}
- Class [ <internal:couchbase> class Couchbase\GetAnalyticsLinksOptions ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\ValueInvalidException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -9904,295 +6484,93 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
- Properties [4] {
- Property [ private $timeout = NULL ]
- Property [ private $link_type = NULL ]
- Property [ private $dataverse = NULL ]
- Property [ private $name = NULL ]
- }
-
- - Methods [4] {
- Method [ <internal:couchbase> public method timeout ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $timeout ]
- }
- - Return [ Couchbase\GetAnalyticsLinksOptions ]
- }
-
- Method [ <internal:couchbase> public method linkType ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $type ]
- }
- - Return [ Couchbase\GetAnalyticsLinksOptions ]
- }
-
- Method [ <internal:couchbase> public method dataverse ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $dataverse ]
- }
- - Return [ Couchbase\GetAnalyticsLinksOptions ]
- }
-
- Method [ <internal:couchbase> public method name ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $name ]
- }
- - Return [ Couchbase\GetAnalyticsLinksOptions ]
- }
- }
- }
-
- Interface [ <internal:couchbase> interface Couchbase\AnalyticsLinkType ] {
-
- - Constants [3] {
- Constant [ public string COUCHBASE ] { couchbase }
- Constant [ public string S3 ] { s3 }
- Constant [ public string AZURE_BLOB ] { azureblob }
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [0] {
- }
-
- - Methods [0] {
- }
- }
-
- Interface [ <internal:couchbase> interface Couchbase\AnalyticsEncryptionLevel ] {
-
- - Constants [3] {
- Constant [ public string NONE ] { none }
- Constant [ public string HALF ] { half }
- Constant [ public string FULL ] { full }
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [0] {
- }
-
- - Methods [0] {
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\QueryIndexManager ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [1] {
- Property [ private $cluster = NULL ]
+ Property [ protected $message = '' ]
+ Property [ protected $code = 0 ]
+ Property [ protected $file = NULL ]
+ Property [ protected $line = NULL ]
}
- - Methods [7] {
- Method [ <internal:couchbase> public method getAllIndexes ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- - Parameters [1] {
- Parameter #0 [ <required> string $bucketName ]
+ - Parameters [0] {
}
- Return [ array ]
}
- Method [ <internal:couchbase> public method createIndex ] {
-
- - Parameters [4] {
- Parameter #0 [ <required> string $bucketName ]
- Parameter #1 [ <required> string $indexName ]
- Parameter #2 [ <required> array $fields ]
- Parameter #3 [ <optional> ?Couchbase\CreateQueryIndexOptions $options = <default> ]
- }
- }
-
- Method [ <internal:couchbase> public method createPrimaryIndex ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> string $bucketName ]
- Parameter #1 [ <optional> ?Couchbase\CreateQueryPrimaryIndexOptions $options = <default> ]
- }
- }
-
- Method [ <internal:couchbase> public method dropIndex ] {
+ Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
- Parameters [3] {
- Parameter #0 [ <required> string $bucketName ]
- Parameter #1 [ <required> string $indexName ]
- Parameter #2 [ <optional> ?Couchbase\DropQueryIndexOptions $options = <default> ]
- }
- }
-
- Method [ <internal:couchbase> public method dropPrimaryIndex ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> string $bucketName ]
- Parameter #1 [ <optional> ?Couchbase\DropQueryPrimaryIndexOptions $options = <default> ]
- }
- }
-
- Method [ <internal:couchbase> public method watchIndexes ] {
-
- - Parameters [4] {
- Parameter #0 [ <required> string $bucketName ]
- Parameter #1 [ <required> array $indexNames ]
- Parameter #2 [ <required> int $timeout ]
- Parameter #3 [ <optional> ?Couchbase\WatchQueryIndexesOptions $options = <default> ]
- }
- }
-
- Method [ <internal:couchbase> public method buildDeferredIndexes ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $bucketName ]
+ Parameter #0 [ <optional> string $message = "" ]
+ Parameter #1 [ <optional> int $code = 0 ]
+ Parameter #2 [ <optional> ?Throwable $previous = null ]
}
}
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\QueryIndex ] {
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [8] {
- Property [ private $name = NULL ]
- Property [ private $is_primary = NULL ]
- Property [ private $type = NULL ]
- Property [ private $state = NULL ]
- Property [ private $keyspace = NULL ]
- Property [ private $index_key = NULL ]
- Property [ private $condition = NULL ]
- Property [ private $partition = NULL ]
- }
-
- - Methods [7] {
- Method [ <internal:couchbase> public method name ] {
+ Method [ <internal:Core, inherits Exception> public method __wakeup ] {
- Parameters [0] {
}
- - Return [ string ]
}
- Method [ <internal:couchbase> public method isPrimary ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {
- Parameters [0] {
}
- - Return [ bool ]
+ - Return [ string ]
}
- Method [ <internal:couchbase> public method type ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {
- Parameters [0] {
}
- - Return [ string ]
}
- Method [ <internal:couchbase> public method state ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {
- Parameters [0] {
}
- Return [ string ]
}
- Method [ <internal:couchbase> public method keyspace ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {
- Parameters [0] {
}
- - Return [ string ]
+ - Return [ int ]
}
- Method [ <internal:couchbase> public method indexKey ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {
- Parameters [0] {
}
- Return [ array ]
}
- Method [ <internal:couchbase> public method condition ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {
- Parameters [0] {
}
- - Return [ ?string ]
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\CreateQueryIndexOptions ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [4] {
- Property [ private $condition = NULL ]
- Property [ private $ignore_if_exists = NULL ]
- Property [ private $num_replicas = NULL ]
- Property [ private $deferred = NULL ]
- }
-
- - Methods [4] {
- Method [ <internal:couchbase> public method condition ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $condition ]
- }
- - Return [ Couchbase\CreateQueryIndexOptions ]
- }
-
- Method [ <internal:couchbase> public method ignoreIfExists ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> bool $shouldIgnore ]
- }
- - Return [ Couchbase\CreateQueryIndexOptions ]
+ - Return [ ?Throwable ]
}
- Method [ <internal:couchbase> public method numReplicas ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {
- - Parameters [1] {
- Parameter #0 [ <required> int $number ]
+ - Parameters [0] {
}
- - Return [ Couchbase\CreateQueryIndexOptions ]
+ - Return [ string ]
}
- Method [ <internal:couchbase> public method deferred ] {
+ Method [ <internal:Core, inherits Exception, prototype Stringable> public method __toString ] {
- - Parameters [1] {
- Parameter #0 [ <required> bool $isDeferred ]
+ - Parameters [0] {
}
- - Return [ Couchbase\CreateQueryIndexOptions ]
+ - Return [ string ]
}
}
}
- Class [ <internal:couchbase> class Couchbase\CreateQueryPrimaryIndexOptions ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\ValueTooDeepException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -10204,726 +6582,93 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
- Properties [4] {
- Property [ private $index_name = NULL ]
- Property [ private $ignore_if_exists = NULL ]
- Property [ private $num_replicas = NULL ]
- Property [ private $deferred = NULL ]
- }
-
- - Methods [4] {
- Method [ <internal:couchbase> public method indexName ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $name ]
- }
- - Return [ Couchbase\CreateQueryPrimaryIndexOptions ]
- }
-
- Method [ <internal:couchbase> public method ignoreIfExists ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> bool $shouldIgnore ]
- }
- - Return [ Couchbase\CreateQueryPrimaryIndexOptions ]
- }
-
- Method [ <internal:couchbase> public method numReplicas ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $number ]
- }
- - Return [ Couchbase\CreateQueryPrimaryIndexOptions ]
- }
-
- Method [ <internal:couchbase> public method deferred ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> bool $isDeferred ]
- }
- - Return [ Couchbase\CreateQueryPrimaryIndexOptions ]
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\DropQueryIndexOptions ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [1] {
- Property [ private $ignore_if_not_exists = NULL ]
- }
-
- - Methods [1] {
- Method [ <internal:couchbase> public method ignoreIfNotExists ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> bool $shouldIgnore ]
- }
- - Return [ Couchbase\DropQueryIndexOptions ]
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\DropQueryPrimaryIndexOptions ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [2] {
- Property [ private $index_name = NULL ]
- Property [ private $ignore_if_not_exists = NULL ]
+ Property [ protected $message = '' ]
+ Property [ protected $code = 0 ]
+ Property [ protected $file = NULL ]
+ Property [ protected $line = NULL ]
}
- - Methods [2] {
- Method [ <internal:couchbase> public method indexName ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $name ]
- }
- - Return [ Couchbase\DropQueryPrimaryIndexOptions ]
- }
-
- Method [ <internal:couchbase> public method ignoreIfNotExists ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- - Parameters [1] {
- Parameter #0 [ <required> bool $shouldIgnore ]
+ - Parameters [0] {
}
- - Return [ Couchbase\DropQueryPrimaryIndexOptions ]
+ - Return [ array ]
}
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\WatchQueryIndexesOptions ] {
-
- - Constants [0] {
- }
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [1] {
- Property [ private $watch_primary = NULL ]
- }
-
- - Methods [1] {
- Method [ <internal:couchbase> public method watchPrimary ] {
+ Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
- - Parameters [1] {
- Parameter #0 [ <required> bool $shouldWatch ]
+ - Parameters [3] {
+ Parameter #0 [ <optional> string $message = "" ]
+ Parameter #1 [ <optional> int $code = 0 ]
+ Parameter #2 [ <optional> ?Throwable $previous = null ]
}
- - Return [ Couchbase\WatchQueryIndexesOptions ]
}
- }
- }
-
- Interface [ <internal:couchbase> interface Couchbase\Authenticator ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
- - Properties [0] {
- }
-
- - Methods [0] {
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\CertAuthenticator implements Couchbase\Authenticator ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [0] {
- }
-
- - Methods [1] {
- Method [ <internal:couchbase, ctor> public method __construct ] {
+ Method [ <internal:Core, inherits Exception> public method __wakeup ] {
- Parameters [0] {
}
}
- }
- }
- Class [ <internal:couchbase> class Couchbase\PasswordAuthenticator implements Couchbase\Authenticator ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [0] {
- }
-
- - Methods [3] {
- Method [ <internal:couchbase, ctor> public method __construct ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {
- Parameters [0] {
}
+ - Return [ string ]
}
- Method [ <internal:couchbase> public method username ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> $username ]
- }
- }
-
- Method [ <internal:couchbase> public method password ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> $password ]
- }
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\MutationState ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [1] {
- Property [ private $tokens = NULL ]
- }
-
- - Methods [2] {
- Method [ <internal:couchbase, ctor> public method __construct ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {
- Parameters [0] {
}
}
- Method [ <internal:couchbase> public method add ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> Couchbase\MutationResult $source ]
- }
- - Return [ Couchbase\MutationState ]
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\AnalyticsOptions ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [10] {
- Property [ private $timeout = NULL ]
- Property [ private $positional_params = NULL ]
- Property [ private $named_params = NULL ]
- Property [ private $raw_params = NULL ]
- Property [ private $scan_consistency = NULL ]
- Property [ private $priority = NULL ]
- Property [ private $readonly = NULL ]
- Property [ private $client_context_id = NULL ]
- Property [ private $scope_name = NULL ]
- Property [ private $scope_qualifier = NULL ]
- }
-
- - Methods [10] {
- Method [ <internal:couchbase> public method timeout ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
- }
- - Return [ Couchbase\AnalyticsOptions ]
- }
-
- Method [ <internal:couchbase> public method namedParameters ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> array $arg ]
- }
- - Return [ Couchbase\AnalyticsOptions ]
- }
-
- Method [ <internal:couchbase> public method positionalParameters ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> array $arg ]
- }
- - Return [ Couchbase\AnalyticsOptions ]
- }
-
- Method [ <internal:couchbase> public method raw ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> string $key ]
- Parameter #1 [ <required> null $value ]
- }
- - Return [ Couchbase\AnalyticsOptions ]
- }
-
- Method [ <internal:couchbase> public method clientContextId ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $value ]
- }
- - Return [ Couchbase\AnalyticsOptions ]
- }
-
- Method [ <internal:couchbase> public method priority ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> bool $arg ]
- }
- - Return [ Couchbase\AnalyticsOptions ]
- }
-
- Method [ <internal:couchbase> public method readonly ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> bool $arg ]
- }
- - Return [ Couchbase\AnalyticsOptions ]
- }
-
- Method [ <internal:couchbase> public method scanConsistency ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $arg ]
- }
- - Return [ Couchbase\AnalyticsOptions ]
- }
-
- Method [ <internal:couchbase> public method scopeName ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $value ]
- }
- - Return [ Couchbase\AnalyticsOptions ]
- }
-
- Method [ <internal:couchbase> public method scopeQualifier ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $value ]
- }
- - Return [ Couchbase\AnalyticsOptions ]
- }
- }
- }
-
- Interface [ <internal:couchbase> interface Couchbase\LookupInSpec ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [0] {
- }
-
- - Methods [0] {
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\LookupGetSpec implements Couchbase\LookupInSpec ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [2] {
- Property [ private $path = NULL ]
- Property [ private $is_xattr = NULL ]
- }
-
- - Methods [1] {
- Method [ <internal:couchbase, ctor> public method __construct ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> string $path ]
- Parameter #1 [ <optional> bool $isXattr = <default> ]
- }
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\LookupCountSpec implements Couchbase\LookupInSpec ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [2] {
- Property [ private $path = NULL ]
- Property [ private $is_xattr = NULL ]
- }
-
- - Methods [1] {
- Method [ <internal:couchbase, ctor> public method __construct ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> string $path ]
- Parameter #1 [ <optional> bool $isXattr = <default> ]
- }
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\LookupExistsSpec implements Couchbase\LookupInSpec ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [2] {
- Property [ private $path = NULL ]
- Property [ private $is_xattr = NULL ]
- }
-
- - Methods [1] {
- Method [ <internal:couchbase, ctor> public method __construct ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> string $path ]
- Parameter #1 [ <optional> bool $isXattr = <default> ]
- }
- }
- }
- }
-
- Interface [ <internal:couchbase> interface Couchbase\MutateInSpec ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [0] {
- }
-
- - Methods [0] {
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\MutateInsertSpec implements Couchbase\MutateInSpec ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [5] {
- Property [ private $path = NULL ]
- Property [ private $value = NULL ]
- Property [ private $is_xattr = NULL ]
- Property [ private $create_path = NULL ]
- Property [ private $expand_macros = NULL ]
- }
-
- - Methods [1] {
- Method [ <internal:couchbase, ctor> public method __construct ] {
-
- - Parameters [5] {
- Parameter #0 [ <required> string $path ]
- Parameter #1 [ <required> $value ]
- Parameter #2 [ <optional> bool $isXattr = <default> ]
- Parameter #3 [ <optional> bool $createPath = <default> ]
- Parameter #4 [ <optional> bool $expandMacros = <default> ]
- }
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\MutateUpsertSpec implements Couchbase\MutateInSpec ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [5] {
- Property [ private $path = NULL ]
- Property [ private $value = NULL ]
- Property [ private $is_xattr = NULL ]
- Property [ private $create_path = NULL ]
- Property [ private $expand_macros = NULL ]
- }
-
- - Methods [1] {
- Method [ <internal:couchbase, ctor> public method __construct ] {
-
- - Parameters [5] {
- Parameter #0 [ <required> string $path ]
- Parameter #1 [ <required> $value ]
- Parameter #2 [ <optional> bool $isXattr = <default> ]
- Parameter #3 [ <optional> bool $createPath = <default> ]
- Parameter #4 [ <optional> bool $expandMacros = <default> ]
- }
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\MutateReplaceSpec implements Couchbase\MutateInSpec ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [4] {
- Property [ private $path = NULL ]
- Property [ private $value = NULL ]
- Property [ private $is_xattr = NULL ]
- Property [ private $expand_macros = NULL ]
- }
-
- - Methods [1] {
- Method [ <internal:couchbase, ctor> public method __construct ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {
- - Parameters [4] {
- Parameter #0 [ <required> string $path ]
- Parameter #1 [ <required> $value ]
- Parameter #2 [ <optional> bool $isXattr = <default> ]
- Parameter #3 [ <optional> bool $expandMacros = <default> ]
+ - Parameters [0] {
}
+ - Return [ string ]
}
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\MutateRemoveSpec implements Couchbase\MutateInSpec ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
- - Static methods [0] {
- }
-
- - Properties [2] {
- Property [ private $path = NULL ]
- Property [ private $is_xattr = NULL ]
- }
-
- - Methods [1] {
- Method [ <internal:couchbase, ctor> public method __construct ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {
- - Parameters [2] {
- Parameter #0 [ <required> string $path ]
- Parameter #1 [ <optional> bool $isXattr = <default> ]
+ - Parameters [0] {
}
+ - Return [ int ]
}
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\MutateArrayAppendSpec implements Couchbase\MutateInSpec ] {
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [5] {
- Property [ private $path = NULL ]
- Property [ private $values = NULL ]
- Property [ private $is_xattr = NULL ]
- Property [ private $create_path = NULL ]
- Property [ private $expand_macros = NULL ]
- }
-
- - Methods [1] {
- Method [ <internal:couchbase, ctor> public method __construct ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {
- - Parameters [5] {
- Parameter #0 [ <required> string $path ]
- Parameter #1 [ <required> array $values ]
- Parameter #2 [ <optional> bool $isXattr = <default> ]
- Parameter #3 [ <optional> bool $createPath = <default> ]
- Parameter #4 [ <optional> bool $expandMacros = <default> ]
+ - Parameters [0] {
}
+ - Return [ array ]
}
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\MutateArrayPrependSpec implements Couchbase\MutateInSpec ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [5] {
- Property [ private $path = NULL ]
- Property [ private $values = NULL ]
- Property [ private $is_xattr = NULL ]
- Property [ private $create_path = NULL ]
- Property [ private $expand_macros = NULL ]
- }
- - Methods [1] {
- Method [ <internal:couchbase, ctor> public method __construct ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {
- - Parameters [5] {
- Parameter #0 [ <required> string $path ]
- Parameter #1 [ <required> array $values ]
- Parameter #2 [ <optional> bool $isXattr = <default> ]
- Parameter #3 [ <optional> bool $createPath = <default> ]
- Parameter #4 [ <optional> bool $expandMacros = <default> ]
+ - Parameters [0] {
}
+ - Return [ ?Throwable ]
}
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\MutateArrayInsertSpec implements Couchbase\MutateInSpec ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
- - Properties [5] {
- Property [ private $path = NULL ]
- Property [ private $values = NULL ]
- Property [ private $is_xattr = NULL ]
- Property [ private $create_path = NULL ]
- Property [ private $expand_macros = NULL ]
- }
-
- - Methods [1] {
- Method [ <internal:couchbase, ctor> public method __construct ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {
- - Parameters [5] {
- Parameter #0 [ <required> string $path ]
- Parameter #1 [ <required> array $values ]
- Parameter #2 [ <optional> bool $isXattr = <default> ]
- Parameter #3 [ <optional> bool $createPath = <default> ]
- Parameter #4 [ <optional> bool $expandMacros = <default> ]
+ - Parameters [0] {
}
+ - Return [ string ]
}
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\MutateArrayAddUniqueSpec implements Couchbase\MutateInSpec ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
- - Static methods [0] {
- }
-
- - Properties [5] {
- Property [ private $path = NULL ]
- Property [ private $value = NULL ]
- Property [ private $is_xattr = NULL ]
- Property [ private $create_path = NULL ]
- Property [ private $expand_macros = NULL ]
- }
-
- - Methods [1] {
- Method [ <internal:couchbase, ctor> public method __construct ] {
+ Method [ <internal:Core, inherits Exception, prototype Stringable> public method __toString ] {
- - Parameters [5] {
- Parameter #0 [ <required> string $path ]
- Parameter #1 [ <required> $value ]
- Parameter #2 [ <optional> bool $isXattr = <default> ]
- Parameter #3 [ <optional> bool $createPath = <default> ]
- Parameter #4 [ <optional> bool $expandMacros = <default> ]
+ - Parameters [0] {
}
+ - Return [ string ]
}
}
}
- Class [ <internal:couchbase> class Couchbase\MutateCounterSpec implements Couchbase\MutateInSpec ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\ValueTooLargeException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -10935,239 +6680,93 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
- Properties [4] {
- Property [ private $path = NULL ]
- Property [ private $delta = NULL ]
- Property [ private $is_xattr = NULL ]
- Property [ private $create_path = NULL ]
- }
-
- - Methods [1] {
- Method [ <internal:couchbase, ctor> public method __construct ] {
-
- - Parameters [4] {
- Parameter #0 [ <required> string $path ]
- Parameter #1 [ <required> int $delta ]
- Parameter #2 [ <optional> bool $isXattr = <default> ]
- Parameter #3 [ <optional> bool $createPath = <default> ]
- }
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\SearchOptions implements JsonSerializable ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [12] {
- Property [ private $timeout = NULL ]
- Property [ private $limit = NULL ]
- Property [ private $skip = NULL ]
- Property [ private $explain = NULL ]
- Property [ private $consistent_with = NULL ]
- Property [ private $fields = NULL ]
- Property [ private $sort = NULL ]
- Property [ private $facets = NULL ]
- Property [ private $highlight_style = NULL ]
- Property [ private $highlight_fields = NULL ]
- Property [ private $disable_scoring = NULL ]
- Property [ private $collections = NULL ]
+ Property [ protected $message = '' ]
+ Property [ protected $code = 0 ]
+ Property [ protected $file = NULL ]
+ Property [ protected $line = NULL ]
}
- - Methods [12] {
- Method [ <internal:couchbase, prototype JsonSerializable> public method jsonSerialize ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
+ - Return [ array ]
}
- Method [ <internal:couchbase> public method timeout ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
- }
- - Return [ Couchbase\SearchOptions ]
- }
-
- Method [ <internal:couchbase> public method limit ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $limit ]
- }
- - Return [ Couchbase\SearchOptions ]
- }
-
- Method [ <internal:couchbase> public method skip ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $skip ]
- }
- - Return [ Couchbase\SearchOptions ]
- }
-
- Method [ <internal:couchbase> public method explain ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> bool $explain ]
- }
- - Return [ Couchbase\SearchOptions ]
- }
-
- Method [ <internal:couchbase> public method disableScoring ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> bool $disableScoring ]
- }
- - Return [ Couchbase\SearchOptions ]
- }
-
- Method [ <internal:couchbase> public method consistentWith ] {
+ Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
- - Parameters [2] {
- Parameter #0 [ <required> string $index ]
- Parameter #1 [ <optional> Couchbase\MutationState $state = <default> ]
+ - Parameters [3] {
+ Parameter #0 [ <optional> string $message = "" ]
+ Parameter #1 [ <optional> int $code = 0 ]
+ Parameter #2 [ <optional> ?Throwable $previous = null ]
}
- - Return [ Couchbase\SearchOptions ]
}
- Method [ <internal:couchbase> public method fields ] {
+ Method [ <internal:Core, inherits Exception> public method __wakeup ] {
- - Parameters [1] {
- Parameter #0 [ <required> array $fields ]
+ - Parameters [0] {
}
- - Return [ Couchbase\SearchOptions ]
}
- Method [ <internal:couchbase> public method facets ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {
- - Parameters [1] {
- Parameter #0 [ <required> array $facets ]
+ - Parameters [0] {
}
- - Return [ Couchbase\SearchOptions ]
+ - Return [ string ]
}
- Method [ <internal:couchbase> public method sort ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {
- - Parameters [1] {
- Parameter #0 [ <required> array $specs ]
+ - Parameters [0] {
}
- - Return [ Couchbase\SearchOptions ]
}
- Method [ <internal:couchbase> public method highlight ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {
- - Parameters [2] {
- Parameter #0 [ <required> ?string $style ]
- Parameter #1 [ <optional> ?array $fields = <default> ]
+ - Parameters [0] {
}
- - Return [ Couchbase\SearchOptions ]
+ - Return [ string ]
}
- Method [ <internal:couchbase> public method collections ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {
- - Parameters [1] {
- Parameter #0 [ <required> array $collections ]
+ - Parameters [0] {
}
- - Return [ Couchbase\SearchOptions ]
+ - Return [ int ]
}
- }
- }
-
- Interface [ <internal:couchbase> interface Couchbase\SearchHighlightMode ] {
-
- - Constants [3] {
- Constant [ public string HTML ] { html }
- Constant [ public string ANSI ] { ansi }
- Constant [ public string SIMPLE ] { simple }
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [0] {
- }
-
- - Methods [0] {
- }
- }
-
- Interface [ <internal:couchbase> interface Couchbase\SearchQuery ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [0] {
- }
-
- - Methods [0] {
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\BooleanFieldSearchQuery implements JsonSerializable, Couchbase\SearchQuery ] {
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [3] {
- Property [ private $boost = NULL ]
- Property [ private $field = NULL ]
- Property [ private $value = NULL ]
- }
-
- - Methods [4] {
- Method [ <internal:couchbase, ctor> public method __construct ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {
- - Parameters [1] {
- Parameter #0 [ <required> bool $arg ]
+ - Parameters [0] {
}
+ - Return [ array ]
}
- Method [ <internal:couchbase, prototype JsonSerializable> public method jsonSerialize ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {
- Parameters [0] {
}
+ - Return [ ?Throwable ]
}
- Method [ <internal:couchbase> public method boost ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {
- - Parameters [1] {
- Parameter #0 [ <required> float $arg ]
+ - Parameters [0] {
}
- - Return [ Couchbase\BooleanFieldSearchQuery ]
+ - Return [ string ]
}
- Method [ <internal:couchbase> public method field ] {
+ Method [ <internal:Core, inherits Exception, prototype Stringable> public method __toString ] {
- - Parameters [1] {
- Parameter #0 [ <required> string $arg ]
+ - Parameters [0] {
}
- - Return [ Couchbase\BooleanFieldSearchQuery ]
+ - Return [ string ]
}
}
}
- Class [ <internal:couchbase> class Couchbase\BooleanSearchQuery implements JsonSerializable, Couchbase\SearchQuery ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\ViewNotFoundException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -11179,280 +6778,93 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
- Properties [4] {
- Property [ private $boost = NULL ]
- Property [ private $must = NULL ]
- Property [ private $must_not = NULL ]
- Property [ private $should = NULL ]
+ Property [ protected $message = '' ]
+ Property [ protected $code = 0 ]
+ Property [ protected $file = NULL ]
+ Property [ protected $line = NULL ]
}
- - Methods [5] {
- Method [ <internal:couchbase, prototype JsonSerializable> public method jsonSerialize ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
+ - Return [ array ]
}
- Method [ <internal:couchbase> public method boost ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> float $boost ]
- }
- - Return [ Couchbase\BooleanSearchQuery ]
- }
-
- Method [ <internal:couchbase> public method must ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> Couchbase\ConjunctionSearchQuery $query ]
- }
- - Return [ Couchbase\BooleanSearchQuery ]
- }
-
- Method [ <internal:couchbase> public method mustNot ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> Couchbase\DisjunctionSearchQuery $query ]
- }
- - Return [ Couchbase\BooleanSearchQuery ]
- }
-
- Method [ <internal:couchbase> public method should ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> Couchbase\DisjunctionSearchQuery $query ]
- }
- - Return [ Couchbase\BooleanSearchQuery ]
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\ConjunctionSearchQuery implements JsonSerializable, Couchbase\SearchQuery ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [2] {
- Property [ private $boost = NULL ]
- Property [ private $queries = NULL ]
- }
-
- - Methods [4] {
- Method [ <internal:couchbase, ctor> public method __construct ] {
+ Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
- - Parameters [1] {
- Parameter #0 [ <required> array $queries ]
+ - Parameters [3] {
+ Parameter #0 [ <optional> string $message = "" ]
+ Parameter #1 [ <optional> int $code = 0 ]
+ Parameter #2 [ <optional> ?Throwable $previous = null ]
}
}
- Method [ <internal:couchbase, prototype JsonSerializable> public method jsonSerialize ] {
+ Method [ <internal:Core, inherits Exception> public method __wakeup ] {
- Parameters [0] {
}
}
- Method [ <internal:couchbase> public method boost ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> float $boost ]
- }
- - Return [ Couchbase\ConjunctionSearchQuery ]
- }
-
- Method [ <internal:couchbase> public method every ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> ...$(queries) ]
- }
- - Return [ Couchbase\ConjunctionSearchQuery ]
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\DateRangeSearchQuery implements JsonSerializable, Couchbase\SearchQuery ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [7] {
- Property [ private $boost = NULL ]
- Property [ private $field = NULL ]
- Property [ private $start = NULL ]
- Property [ private $inclusive_start = NULL ]
- Property [ private $end = NULL ]
- Property [ private $inclusive_end = NULL ]
- Property [ private $date_time_parser = NULL ]
- }
-
- - Methods [6] {
- Method [ <internal:couchbase, prototype JsonSerializable> public method jsonSerialize ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {
- Parameters [0] {
}
+ - Return [ string ]
}
- Method [ <internal:couchbase> public method boost ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> $boost ]
- }
- - Return [ Couchbase\DateRangeSearchQuery ]
- }
-
- Method [ <internal:couchbase> public method field ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> $field ]
- }
- - Return [ Couchbase\DateRangeSearchQuery ]
- }
-
- Method [ <internal:couchbase> public method start ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> $start ]
- Parameter #1 [ <optional> ?bool $inclusive = <default> ]
- }
- - Return [ Couchbase\DateRangeSearchQuery ]
- }
-
- Method [ <internal:couchbase> public method end ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> $end ]
- Parameter #1 [ <optional> ?bool $inclusive = <default> ]
- }
- - Return [ Couchbase\DateRangeSearchQuery ]
- }
-
- Method [ <internal:couchbase> public method dateTimeParser ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $dateTimeParser ]
- }
- - Return [ Couchbase\DateRangeSearchQuery ]
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\DisjunctionSearchQuery implements JsonSerializable, Couchbase\SearchQuery ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [3] {
- Property [ private $queries = NULL ]
- Property [ private $min = NULL ]
- Property [ private $boost = NULL ]
- }
-
- - Methods [5] {
- Method [ <internal:couchbase, ctor> public method __construct ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> array $queries ]
- }
- }
-
- Method [ <internal:couchbase, prototype JsonSerializable> public method jsonSerialize ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {
- Parameters [0] {
}
}
- Method [ <internal:couchbase> public method boost ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> float $boost ]
- }
- - Return [ Couchbase\DisjunctionSearchQuery ]
- }
-
- Method [ <internal:couchbase> public method either ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {
- - Parameters [1] {
- Parameter #0 [ <required> ...$(queries) ]
+ - Parameters [0] {
}
- - Return [ Couchbase\DisjunctionSearchQuery ]
+ - Return [ string ]
}
- Method [ <internal:couchbase> public method min ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {
- - Parameters [1] {
- Parameter #0 [ <required> int $min ]
+ - Parameters [0] {
}
- - Return [ Couchbase\DisjunctionSearchQuery ]
+ - Return [ int ]
}
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\DocIdSearchQuery implements JsonSerializable, Couchbase\SearchQuery ] {
-
- - Constants [0] {
- }
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [3] {
- Property [ private $boost = NULL ]
- Property [ private $field = NULL ]
- Property [ private $ids = NULL ]
- }
-
- - Methods [4] {
- Method [ <internal:couchbase, prototype JsonSerializable> public method jsonSerialize ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {
- Parameters [0] {
}
+ - Return [ array ]
}
- Method [ <internal:couchbase> public method boost ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {
- - Parameters [1] {
- Parameter #0 [ <required> float $boost ]
+ - Parameters [0] {
}
- - Return [ Couchbase\DocIdSearchQuery ]
+ - Return [ ?Throwable ]
}
- Method [ <internal:couchbase> public method field ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {
- - Parameters [1] {
- Parameter #0 [ <required> string $field ]
+ - Parameters [0] {
}
- - Return [ Couchbase\DocIdSearchQuery ]
+ - Return [ string ]
}
- Method [ <internal:couchbase> public method docIds ] {
+ Method [ <internal:Core, inherits Exception, prototype Stringable> public method __toString ] {
- - Parameters [1] {
- Parameter #0 [ <required> ...$(documentIds) ]
+ - Parameters [0] {
}
+ - Return [ string ]
}
}
}
- Class [ <internal:couchbase> class Couchbase\GeoBoundingBoxSearchQuery implements JsonSerializable, Couchbase\SearchQuery ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\XattrCannotModifyVirtualAttributeException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -11463,250 +6875,94 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [6] {
- Property [ private $boost = NULL ]
- Property [ private $field = NULL ]
- Property [ private $top_left_longitude = NULL ]
- Property [ private $top_left_latitude = NULL ]
- Property [ private $bottom_right_longitude = NULL ]
- Property [ private $bottom_right_latitude = NULL ]
+ - Properties [4] {
+ Property [ protected $message = '' ]
+ Property [ protected $code = 0 ]
+ Property [ protected $file = NULL ]
+ Property [ protected $line = NULL ]
}
- - Methods [4] {
- Method [ <internal:couchbase, ctor> public method __construct ] {
-
- - Parameters [4] {
- Parameter #0 [ <required> float $top_left_longitude ]
- Parameter #1 [ <required> float $top_left_latitude ]
- Parameter #2 [ <required> float $buttom_right_longitude ]
- Parameter #3 [ <required> float $buttom_right_latitude ]
- }
- }
-
- Method [ <internal:couchbase, prototype JsonSerializable> public method jsonSerialize ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
+ - Return [ array ]
}
- Method [ <internal:couchbase> public method boost ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> float $boost ]
- }
- - Return [ Couchbase\GeoBoundingBoxSearchQuery ]
- }
-
- Method [ <internal:couchbase> public method field ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $field ]
- }
- - Return [ Couchbase\GeoBoundingBoxSearchQuery ]
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\GeoDistanceSearchQuery implements JsonSerializable, Couchbase\SearchQuery ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [5] {
- Property [ private $boost = NULL ]
- Property [ private $field = NULL ]
- Property [ private $longitude = NULL ]
- Property [ private $latitude = NULL ]
- Property [ private $distance = NULL ]
- }
-
- - Methods [4] {
- Method [ <internal:couchbase, ctor> public method __construct ] {
+ Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
- Parameters [3] {
- Parameter #0 [ <required> float $longitude ]
- Parameter #1 [ <required> float $latitude ]
- Parameter #2 [ <optional> string $distance = <default> ]
+ Parameter #0 [ <optional> string $message = "" ]
+ Parameter #1 [ <optional> int $code = 0 ]
+ Parameter #2 [ <optional> ?Throwable $previous = null ]
}
}
- Method [ <internal:couchbase, prototype JsonSerializable> public method jsonSerialize ] {
+ Method [ <internal:Core, inherits Exception> public method __wakeup ] {
- Parameters [0] {
}
}
- Method [ <internal:couchbase> public method boost ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> float $boost ]
- }
- - Return [ Couchbase\GeoDistanceSearchQuery ]
- }
-
- Method [ <internal:couchbase> public method field ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $field ]
- }
- - Return [ Couchbase\GeoDistanceSearchQuery ]
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\GeoPolygonSearchQuery implements JsonSerializable, Couchbase\SearchQuery ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [3] {
- Property [ private $boost = NULL ]
- Property [ private $field = NULL ]
- Property [ private $coordinates = NULL ]
- }
-
- - Methods [4] {
- Method [ <internal:couchbase, ctor> public method __construct ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> array $coordinates ]
- }
- }
-
- Method [ <internal:couchbase, prototype JsonSerializable> public method jsonSerialize ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {
- Parameters [0] {
}
+ - Return [ string ]
}
- Method [ <internal:couchbase> public method boost ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> float $boost ]
- }
- - Return [ Couchbase\GeoPolygonSearchQuery ]
- }
-
- Method [ <internal:couchbase> public method field ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {
- - Parameters [1] {
- Parameter #0 [ <required> string $field ]
+ - Parameters [0] {
}
- - Return [ Couchbase\GeoPolygonSearchQuery ]
}
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\Coordinate implements JsonSerializable ] {
-
- - Constants [0] {
- }
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [2] {
- Property [ private $longitude = NULL ]
- Property [ private $latitude = NULL ]
- }
-
- - Methods [2] {
- Method [ <internal:couchbase, ctor> public method __construct ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {
- - Parameters [2] {
- Parameter #0 [ <required> float $longitude ]
- Parameter #1 [ <required> float $latitude ]
+ - Parameters [0] {
}
+ - Return [ string ]
}
- Method [ <internal:couchbase, prototype JsonSerializable> public method jsonSerialize ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {
- Parameters [0] {
}
+ - Return [ int ]
}
- }
- }
- Class [ <internal:couchbase> class Couchbase\MatchAllSearchQuery implements JsonSerializable, Couchbase\SearchQuery ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [1] {
- Property [ private $boost = NULL ]
- }
-
- - Methods [2] {
- Method [ <internal:couchbase, prototype JsonSerializable> public method jsonSerialize ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {
- Parameters [0] {
}
+ - Return [ array ]
}
- Method [ <internal:couchbase> public method boost ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {
- - Parameters [1] {
- Parameter #0 [ <required> float $boost ]
+ - Parameters [0] {
}
- - Return [ Couchbase\MatchAllSearchQuery ]
+ - Return [ ?Throwable ]
}
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\MatchNoneSearchQuery implements JsonSerializable, Couchbase\SearchQuery ] {
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [1] {
- Property [ private $boost = NULL ]
- }
-
- - Methods [2] {
- Method [ <internal:couchbase, prototype JsonSerializable> public method jsonSerialize ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {
- Parameters [0] {
}
+ - Return [ string ]
}
- Method [ <internal:couchbase> public method boost ] {
+ Method [ <internal:Core, inherits Exception, prototype Stringable> public method __toString ] {
- - Parameters [1] {
- Parameter #0 [ <required> float $boost ]
+ - Parameters [0] {
}
- - Return [ Couchbase\MatchNoneSearchQuery ]
+ - Return [ string ]
}
}
}
- Class [ <internal:couchbase> class Couchbase\MatchPhraseSearchQuery implements JsonSerializable, Couchbase\SearchQuery ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\XattrInvalidKeyComboException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -11718,446 +6974,93 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
- Properties [4] {
- Property [ private $boost = NULL ]
- Property [ private $field = NULL ]
- Property [ private $value = NULL ]
- Property [ private $analyzer = NULL ]
+ Property [ protected $message = '' ]
+ Property [ protected $code = 0 ]
+ Property [ protected $file = NULL ]
+ Property [ protected $line = NULL ]
}
- - Methods [5] {
- Method [ <internal:couchbase, ctor> public method __construct ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $value ]
- }
- }
-
- Method [ <internal:couchbase, prototype JsonSerializable> public method jsonSerialize ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
+ - Return [ array ]
}
- Method [ <internal:couchbase> public method boost ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> float $boost ]
- }
- - Return [ Couchbase\MatchPhraseSearchQuery ]
- }
-
- Method [ <internal:couchbase> public method field ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $field ]
- }
- - Return [ Couchbase\MatchPhraseSearchQuery ]
- }
-
- Method [ <internal:couchbase> public method analyzer ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $analyzer ]
- }
- - Return [ Couchbase\MatchPhraseSearchQuery ]
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\MatchSearchQuery implements JsonSerializable, Couchbase\SearchQuery ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [6] {
- Property [ private $boost = NULL ]
- Property [ private $field = NULL ]
- Property [ private $value = NULL ]
- Property [ private $analyzer = NULL ]
- Property [ private $prefix_length = NULL ]
- Property [ private $fuzziness = NULL ]
- }
-
- - Methods [7] {
- Method [ <internal:couchbase, ctor> public method __construct ] {
+ Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
- - Parameters [1] {
- Parameter #0 [ <required> string $value ]
+ - Parameters [3] {
+ Parameter #0 [ <optional> string $message = "" ]
+ Parameter #1 [ <optional> int $code = 0 ]
+ Parameter #2 [ <optional> ?Throwable $previous = null ]
}
}
- Method [ <internal:couchbase, prototype JsonSerializable> public method jsonSerialize ] {
+ Method [ <internal:Core, inherits Exception> public method __wakeup ] {
- Parameters [0] {
}
}
- Method [ <internal:couchbase> public method boost ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> float $boost ]
- }
- - Return [ Couchbase\MatchSearchQuery ]
- }
-
- Method [ <internal:couchbase> public method field ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $field ]
- }
- - Return [ Couchbase\MatchSearchQuery ]
- }
-
- Method [ <internal:couchbase> public method analyzer ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $analyzer ]
- }
- - Return [ Couchbase\MatchSearchQuery ]
- }
-
- Method [ <internal:couchbase> public method prefixLength ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $prefix_length ]
- }
- - Return [ Couchbase\MatchSearchQuery ]
- }
-
- Method [ <internal:couchbase> public method fuzziness ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $fuzziness ]
- }
- - Return [ Couchbase\MatchSearchQuery ]
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\NumericRangeSearchQuery implements JsonSerializable, Couchbase\SearchQuery ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [6] {
- Property [ private $boost = NULL ]
- Property [ private $field = NULL ]
- Property [ private $min = NULL ]
- Property [ private $inclusive_min = NULL ]
- Property [ private $max = NULL ]
- Property [ private $inclusive_max = NULL ]
- }
-
- - Methods [5] {
- Method [ <internal:couchbase, prototype JsonSerializable> public method jsonSerialize ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {
- Parameters [0] {
}
+ - Return [ string ]
}
- Method [ <internal:couchbase> public method boost ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> $boost ]
- }
- - Return [ Couchbase\NumericRangeSearchQuery ]
- }
-
- Method [ <internal:couchbase> public method field ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> $field ]
- }
- - Return [ Couchbase\NumericRangeSearchQuery ]
- }
-
- Method [ <internal:couchbase> public method min ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> float $min ]
- Parameter #1 [ <optional> ?bool $inclusive = <default> ]
- }
- - Return [ Couchbase\NumericRangeSearchQuery ]
- }
-
- Method [ <internal:couchbase> public method max ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> float $max ]
- Parameter #1 [ <optional> ?bool $inclusive = <default> ]
- }
- - Return [ Couchbase\NumericRangeSearchQuery ]
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\PhraseSearchQuery implements JsonSerializable, Couchbase\SearchQuery ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [3] {
- Property [ private $boost = NULL ]
- Property [ private $field = NULL ]
- Property [ private $terms = NULL ]
- }
-
- - Methods [4] {
- Method [ <internal:couchbase, ctor> public method __construct ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> ...$terms ]
- }
- }
-
- Method [ <internal:couchbase, prototype JsonSerializable> public method jsonSerialize ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {
- Parameters [0] {
}
}
- Method [ <internal:couchbase> public method boost ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> float $boost ]
- }
- - Return [ Couchbase\PhraseSearchQuery ]
- }
-
- Method [ <internal:couchbase> public method field ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $field ]
- }
- - Return [ Couchbase\PhraseSearchQuery ]
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\PrefixSearchQuery implements JsonSerializable, Couchbase\SearchQuery ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [3] {
- Property [ private $boost = NULL ]
- Property [ private $field = NULL ]
- Property [ private $value = NULL ]
- }
-
- - Methods [4] {
- Method [ <internal:couchbase, ctor> public method __construct ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $prefix ]
- }
- }
-
- Method [ <internal:couchbase, prototype JsonSerializable> public method jsonSerialize ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {
- Parameters [0] {
}
+ - Return [ string ]
}
- Method [ <internal:couchbase> public method boost ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $boost ]
- }
- - Return [ Couchbase\PrefixSearchQuery ]
- }
-
- Method [ <internal:couchbase> public method field ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $field ]
- }
- - Return [ Couchbase\PrefixSearchQuery ]
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\QueryStringSearchQuery implements JsonSerializable, Couchbase\SearchQuery ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [2] {
- Property [ private $boost = NULL ]
- Property [ private $value = NULL ]
- }
-
- - Methods [3] {
- Method [ <internal:couchbase, ctor> public method __construct ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $query_string ]
- }
- }
-
- Method [ <internal:couchbase, prototype JsonSerializable> public method jsonSerialize ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {
- Parameters [0] {
}
+ - Return [ int ]
}
- Method [ <internal:couchbase> public method boost ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> float $boost ]
- }
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\RegexpSearchQuery implements JsonSerializable, Couchbase\SearchQuery ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [3] {
- Property [ private $boost = NULL ]
- Property [ private $field = NULL ]
- Property [ private $value = NULL ]
- }
-
- - Methods [4] {
- Method [ <internal:couchbase, ctor> public method __construct ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $regexp ]
- }
- }
-
- Method [ <internal:couchbase, prototype JsonSerializable> public method jsonSerialize ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {
- Parameters [0] {
}
+ - Return [ array ]
}
- Method [ <internal:couchbase> public method boost ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> float $boost ]
- }
- - Return [ Couchbase\RegexpSearchQuery ]
- }
-
- Method [ <internal:couchbase> public method field ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $field ]
- }
- - Return [ Couchbase\RegexpSearchQuery ]
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\TermSearchQuery implements JsonSerializable, Couchbase\SearchQuery ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [6] {
- Property [ private $boost = NULL ]
- Property [ private $field = NULL ]
- Property [ private $term = NULL ]
- Property [ private $analyzer = NULL ]
- Property [ private $prefix_length = NULL ]
- Property [ private $fuzziness = NULL ]
- }
-
- - Methods [6] {
- Method [ <internal:couchbase, ctor> public method __construct ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $term ]
- }
- }
-
- Method [ <internal:couchbase, prototype JsonSerializable> public method jsonSerialize ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {
- Parameters [0] {
}
+ - Return [ ?Throwable ]
}
- Method [ <internal:couchbase> public method boost ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> float $boost ]
- }
- - Return [ Couchbase\TermSearchQuery ]
- }
-
- Method [ <internal:couchbase> public method field ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $field ]
- }
- - Return [ Couchbase\TermSearchQuery ]
- }
-
- Method [ <internal:couchbase> public method prefixLength ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {
- - Parameters [1] {
- Parameter #0 [ <required> int $prefix_length ]
+ - Parameters [0] {
}
- - Return [ Couchbase\TermSearchQuery ]
+ - Return [ string ]
}
- Method [ <internal:couchbase> public method fuzziness ] {
+ Method [ <internal:Core, inherits Exception, prototype Stringable> public method __toString ] {
- - Parameters [1] {
- Parameter #0 [ <required> int $fuzziness ]
+ - Parameters [0] {
}
- - Return [ Couchbase\TermSearchQuery ]
+ - Return [ string ]
}
}
}
- Class [ <internal:couchbase> class Couchbase\TermRangeSearchQuery implements JsonSerializable, Couchbase\SearchQuery ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\XattrUnknownMacroException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -12168,203 +7071,94 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [6] {
- Property [ private $boost = NULL ]
- Property [ private $field = NULL ]
- Property [ private $min = NULL ]
- Property [ private $inclusive_min = NULL ]
- Property [ private $max = NULL ]
- Property [ private $inclusive_max = NULL ]
+ - Properties [4] {
+ Property [ protected $message = '' ]
+ Property [ protected $code = 0 ]
+ Property [ protected $file = NULL ]
+ Property [ protected $line = NULL ]
}
- - Methods [5] {
- Method [ <internal:couchbase, prototype JsonSerializable> public method jsonSerialize ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
+ - Return [ array ]
}
- Method [ <internal:couchbase> public method boost ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> $boost ]
- }
- - Return [ Couchbase\TermRangeSearchQuery ]
- }
-
- Method [ <internal:couchbase> public method field ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> $field ]
- }
- - Return [ Couchbase\TermRangeSearchQuery ]
- }
-
- Method [ <internal:couchbase> public method min ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> float $min ]
- Parameter #1 [ <optional> ?bool $inclusive = <default> ]
- }
- - Return [ Couchbase\TermRangeSearchQuery ]
- }
-
- Method [ <internal:couchbase> public method max ] {
+ Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
- - Parameters [2] {
- Parameter #0 [ <required> float $max ]
- Parameter #1 [ <optional> ?bool $inclusive = <default> ]
+ - Parameters [3] {
+ Parameter #0 [ <optional> string $message = "" ]
+ Parameter #1 [ <optional> int $code = 0 ]
+ Parameter #2 [ <optional> ?Throwable $previous = null ]
}
- - Return [ Couchbase\TermRangeSearchQuery ]
}
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\WildcardSearchQuery implements JsonSerializable, Couchbase\SearchQuery ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [3] {
- Property [ private $boost = NULL ]
- Property [ private $field = NULL ]
- Property [ private $value = NULL ]
- }
- - Methods [4] {
- Method [ <internal:couchbase, ctor> public method __construct ] {
+ Method [ <internal:Core, inherits Exception> public method __wakeup ] {
- - Parameters [1] {
- Parameter #0 [ <required> string $wildcard ]
+ - Parameters [0] {
}
}
- Method [ <internal:couchbase, prototype JsonSerializable> public method jsonSerialize ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {
- Parameters [0] {
}
+ - Return [ string ]
}
- Method [ <internal:couchbase> public method boost ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {
- - Parameters [1] {
- Parameter #0 [ <required> float $boost ]
+ - Parameters [0] {
}
- - Return [ Couchbase\WildcardSearchQuery ]
}
- Method [ <internal:couchbase> public method field ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {
- - Parameters [1] {
- Parameter #0 [ <required> string $field ]
+ - Parameters [0] {
}
- - Return [ Couchbase\WildcardSearchQuery ]
+ - Return [ string ]
}
- }
- }
-
- Interface [ <internal:couchbase> interface Couchbase\SearchFacet ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [0] {
- }
-
- - Methods [0] {
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\TermSearchFacet implements JsonSerializable, Couchbase\SearchFacet ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [2] {
- Property [ private $field = NULL ]
- Property [ private $limit = NULL ]
- }
- - Methods [2] {
- Method [ <internal:couchbase, ctor> public method __construct ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {
- - Parameters [2] {
- Parameter #0 [ <required> string $field ]
- Parameter #1 [ <required> int $limit ]
+ - Parameters [0] {
}
+ - Return [ int ]
}
- Method [ <internal:couchbase, prototype JsonSerializable> public method jsonSerialize ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {
- Parameters [0] {
}
+ - Return [ array ]
}
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\NumericRangeSearchFacet implements JsonSerializable, Couchbase\SearchFacet ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
- - Properties [3] {
- Property [ private $field = NULL ]
- Property [ private $limit = NULL ]
- Property [ private $ranges = NULL ]
- }
-
- - Methods [3] {
- Method [ <internal:couchbase, ctor> public method __construct ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {
- - Parameters [2] {
- Parameter #0 [ <required> string $field ]
- Parameter #1 [ <required> int $limit ]
+ - Parameters [0] {
}
+ - Return [ ?Throwable ]
}
- Method [ <internal:couchbase, prototype JsonSerializable> public method jsonSerialize ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {
- Parameters [0] {
}
+ - Return [ string ]
}
- Method [ <internal:couchbase> public method addRange ] {
+ Method [ <internal:Core, inherits Exception, prototype Stringable> public method __toString ] {
- - Parameters [3] {
- Parameter #0 [ <required> string $name ]
- Parameter #1 [ <required> ?float $min ]
- Parameter #2 [ <required> ?float $max ]
+ - Parameters [0] {
}
- - Return [ Couchbase\NumericRangeSearchFacet ]
+ - Return [ string ]
}
}
}
- Class [ <internal:couchbase> class Couchbase\DateRangeSearchFacet implements JsonSerializable, Couchbase\SearchFacet ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\XattrUnknownVirtualAttributeException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -12375,305 +7169,94 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [3] {
- Property [ private $field = NULL ]
- Property [ private $limit = NULL ]
- Property [ private $ranges = NULL ]
+ - Properties [4] {
+ Property [ protected $message = '' ]
+ Property [ protected $code = 0 ]
+ Property [ protected $file = NULL ]
+ Property [ protected $line = NULL ]
}
- - Methods [3] {
- Method [ <internal:couchbase, ctor> public method __construct ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> string $field ]
- Parameter #1 [ <required> int $limit ]
- }
- }
-
- Method [ <internal:couchbase, prototype JsonSerializable> public method jsonSerialize ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
+ - Return [ array ]
}
- Method [ <internal:couchbase> public method addRange ] {
+ Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
- Parameters [3] {
- Parameter #0 [ <required> string $name ]
- Parameter #1 [ <required> $start ]
- Parameter #2 [ <required> $end ]
- }
- - Return [ Couchbase\DateRangeSearchFacet ]
- }
- }
- }
-
- Interface [ <internal:couchbase> interface Couchbase\SearchSort ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [0] {
- }
-
- - Methods [0] {
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\SearchSortField implements JsonSerializable, Couchbase\SearchSort ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [5] {
- Property [ private $desc = NULL ]
- Property [ private $field = NULL ]
- Property [ private $type = NULL ]
- Property [ private $mode = NULL ]
- Property [ private $missing = NULL ]
- }
-
- - Methods [6] {
- Method [ <internal:couchbase, ctor> public method __construct ] {
-
- - Parameters [1] {
- Parameter #0 [ <optional> string $field = <default> ]
+ Parameter #0 [ <optional> string $message = "" ]
+ Parameter #1 [ <optional> int $code = 0 ]
+ Parameter #2 [ <optional> ?Throwable $previous = null ]
}
}
- Method [ <internal:couchbase, prototype JsonSerializable> public method jsonSerialize ] {
+ Method [ <internal:Core, inherits Exception> public method __wakeup ] {
- Parameters [0] {
}
}
- Method [ <internal:couchbase> public method descending ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> bool $descending ]
- }
- - Return [ Couchbase\SearchSortField ]
- }
-
- Method [ <internal:couchbase> public method type ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $type ]
- }
- - Return [ Couchbase\SearchSortField ]
- }
-
- Method [ <internal:couchbase> public method mode ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $mode ]
- }
- - Return [ Couchbase\SearchSortField ]
- }
-
- Method [ <internal:couchbase> public method missing ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $missing ]
- }
- - Return [ Couchbase\SearchSortField ]
- }
- }
- }
-
- Interface [ <internal:couchbase> interface Couchbase\SearchSortType ] {
-
- - Constants [4] {
- Constant [ public string AUTO ] { auto }
- Constant [ public string STRING ] { string }
- Constant [ public string NUMBER ] { number }
- Constant [ public string DATE ] { date }
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [0] {
- }
-
- - Methods [0] {
- }
- }
-
- Interface [ <internal:couchbase> interface Couchbase\SearchSortMode ] {
-
- - Constants [3] {
- Constant [ public string DEFAULT ] { default }
- Constant [ public string MIN ] { min }
- Constant [ public string MAX ] { max }
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [0] {
- }
-
- - Methods [0] {
- }
- }
-
- Interface [ <internal:couchbase> interface Couchbase\SearchSortMissing ] {
-
- - Constants [2] {
- Constant [ public string FIRST ] { first }
- Constant [ public string LAST ] { last }
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [0] {
- }
-
- - Methods [0] {
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\SearchSortGeoDistance implements JsonSerializable, Couchbase\SearchSort ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [5] {
- Property [ private $desc = NULL ]
- Property [ private $field = NULL ]
- Property [ private $longitude = NULL ]
- Property [ private $latitude = NULL ]
- Property [ private $unit = NULL ]
- }
-
- - Methods [4] {
- Method [ <internal:couchbase, ctor> public method __construct ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {
- - Parameters [3] {
- Parameter #0 [ <required> string $field ]
- Parameter #1 [ <required> float $longitude ]
- Parameter #2 [ <required> float $latitude ]
+ - Parameters [0] {
}
+ - Return [ string ]
}
- Method [ <internal:couchbase, prototype JsonSerializable> public method jsonSerialize ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {
- Parameters [0] {
}
}
- Method [ <internal:couchbase> public method descending ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {
- - Parameters [1] {
- Parameter #0 [ <required> bool $descending ]
+ - Parameters [0] {
}
- - Return [ Couchbase\SearchSortGeoDistance ]
+ - Return [ string ]
}
- Method [ <internal:couchbase> public method unit ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {
- - Parameters [1] {
- Parameter #0 [ <required> string $unit ]
+ - Parameters [0] {
}
- - Return [ Couchbase\SearchSortGeoDistance ]
+ - Return [ int ]
}
- }
- }
- Class [ <internal:couchbase> class Couchbase\SearchSortId implements JsonSerializable, Couchbase\SearchSort ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [1] {
- Property [ private $desc = NULL ]
- }
-
- - Methods [2] {
- Method [ <internal:couchbase, prototype JsonSerializable> public method jsonSerialize ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {
- Parameters [0] {
}
+ - Return [ array ]
}
- Method [ <internal:couchbase> public method descending ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {
- - Parameters [1] {
- Parameter #0 [ <required> bool $descending ]
+ - Parameters [0] {
}
- - Return [ Couchbase\SearchSortId ]
+ - Return [ ?Throwable ]
}
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\SearchSortScore implements JsonSerializable, Couchbase\SearchSort ] {
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [1] {
- Property [ private $desc = NULL ]
- }
-
- - Methods [2] {
- Method [ <internal:couchbase, prototype JsonSerializable> public method jsonSerialize ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {
- Parameters [0] {
}
+ - Return [ string ]
}
- Method [ <internal:couchbase> public method descending ] {
+ Method [ <internal:Core, inherits Exception, prototype Stringable> public method __toString ] {
- - Parameters [1] {
- Parameter #0 [ <required> bool $descending ]
+ - Parameters [0] {
}
- - Return [ Couchbase\SearchSortScore ]
+ - Return [ string ]
}
}
}
- Class [ <internal:couchbase> class Couchbase\SearchIndexManager ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\TransactionException extends Couchbase\Exception\CouchbaseException implements Stringable, Throwable ] {
- Constants [0] {
}
@@ -12684,251 +7267,94 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [0] {
+ - Properties [4] {
+ Property [ protected $message = '' ]
+ Property [ protected $code = 0 ]
+ Property [ protected $file = NULL ]
+ Property [ protected $line = NULL ]
}
- - Methods [12] {
- Method [ <internal:couchbase> public method getIndex ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $name ]
- }
- - Return [ Couchbase\SearchIndex ]
- }
-
- Method [ <internal:couchbase> public method getAllIndexes ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- Return [ array ]
}
- Method [ <internal:couchbase> public method upsertIndex ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> Couchbase\SearchIndex $indexDefinition ]
- }
- }
-
- Method [ <internal:couchbase> public method dropIndex ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $name ]
- }
- }
-
- Method [ <internal:couchbase> public method getIndexedDocumentsCount ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $indexName ]
- }
- - Return [ int ]
- }
-
- Method [ <internal:couchbase> public method pauseIngest ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $indexName ]
- }
- }
-
- Method [ <internal:couchbase> public method resumeIngest ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $indexName ]
- }
- }
-
- Method [ <internal:couchbase> public method allowQuerying ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $indexName ]
- }
- }
-
- Method [ <internal:couchbase> public method disallowQuerying ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $indexName ]
- }
- }
-
- Method [ <internal:couchbase> public method freezePlan ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $indexName ]
- }
- }
-
- Method [ <internal:couchbase> public method unfreezePlan ] {
+ Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
- - Parameters [1] {
- Parameter #0 [ <required> string $indexName ]
+ - Parameters [3] {
+ Parameter #0 [ <optional> string $message = "" ]
+ Parameter #1 [ <optional> int $code = 0 ]
+ Parameter #2 [ <optional> ?Throwable $previous = null ]
}
}
- Method [ <internal:couchbase> public method analyzeDocument ] {
+ Method [ <internal:Core, inherits Exception> public method __wakeup ] {
- - Parameters [2] {
- Parameter #0 [ <required> string $indexName ]
- Parameter #1 [ <required> $document ]
+ - Parameters [0] {
}
}
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\SearchIndex implements JsonSerializable ] {
-
- - Constants [0] {
- }
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [8] {
- Property [ private $type = NULL ]
- Property [ private $uuid = NULL ]
- Property [ private $name = NULL ]
- Property [ private $params = NULL ]
- Property [ private $source_type = NULL ]
- Property [ private $source_uuid = NULL ]
- Property [ private $source_name = NULL ]
- Property [ private $source_params = NULL ]
- }
-
- - Methods [17] {
- Method [ <internal:couchbase> public method type ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {
- Parameters [0] {
}
- Return [ string ]
}
- Method [ <internal:couchbase> public method uuid ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {
- Parameters [0] {
}
- - Return [ string ]
}
- Method [ <internal:couchbase> public method name ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {
- Parameters [0] {
}
- Return [ string ]
}
- Method [ <internal:couchbase> public method params ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {
- Parameters [0] {
}
- - Return [ array ]
+ - Return [ int ]
}
- Method [ <internal:couchbase> public method sourceType ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {
- Parameters [0] {
}
- - Return [ string ]
+ - Return [ array ]
}
- Method [ <internal:couchbase> public method sourceUuid ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {
- Parameters [0] {
}
- - Return [ string ]
+ - Return [ ?Throwable ]
}
- Method [ <internal:couchbase> public method sourceName ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {
- Parameters [0] {
}
- Return [ string ]
}
- Method [ <internal:couchbase> public method sourceParams ] {
-
- - Parameters [0] {
- }
- - Return [ array ]
- }
-
- Method [ <internal:couchbase> public method setType ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $type ]
- }
- - Return [ Couchbase\SearchIndex ]
- }
-
- Method [ <internal:couchbase> public method setUuid ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $uuid ]
- }
- - Return [ Couchbase\SearchIndex ]
- }
-
- Method [ <internal:couchbase> public method setName ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $name ]
- }
- - Return [ Couchbase\SearchIndex ]
- }
-
- Method [ <internal:couchbase> public method setParams ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> array $params ]
- }
- - Return [ Couchbase\SearchIndex ]
- }
-
- Method [ <internal:couchbase> public method setSourceType ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $type ]
- }
- - Return [ Couchbase\SearchIndex ]
- }
-
- Method [ <internal:couchbase> public method setSourceUuid ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $uuid ]
- }
- - Return [ Couchbase\SearchIndex ]
- }
-
- Method [ <internal:couchbase> public method setSourceName ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $name ]
- }
- - Return [ Couchbase\SearchIndex ]
- }
-
- Method [ <internal:couchbase> public method setSourceParams ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> array $params ]
- }
- - Return [ Couchbase\SearchIndex ]
- }
-
- Method [ <internal:couchbase, prototype JsonSerializable> public method jsonSerialize ] {
+ Method [ <internal:Core, inherits Exception, prototype Stringable> public method __toString ] {
- Parameters [0] {
}
+ - Return [ string ]
}
}
}
- Class [ <internal:couchbase> class Couchbase\GetOptions ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\TransactionOperationFailedException extends Couchbase\Exception\TransactionException implements Throwable, Stringable ] {
- Constants [0] {
}
@@ -12940,240 +7366,93 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
- Properties [4] {
- Property [ private $timeout = NULL ]
- Property [ private $with_expiry = NULL ]
- Property [ private $project = NULL ]
- Property [ private $decoder = NULL ]
+ Property [ protected $message = '' ]
+ Property [ protected $code = 0 ]
+ Property [ protected $file = NULL ]
+ Property [ protected $line = NULL ]
}
- - Methods [4] {
- Method [ <internal:couchbase> public method timeout ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
- }
- - Return [ Couchbase\GetOptions ]
- }
-
- Method [ <internal:couchbase> public method withExpiry ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> bool $arg ]
- }
- - Return [ Couchbase\GetOptions ]
- }
-
- Method [ <internal:couchbase> public method project ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> array $arg ]
- }
- - Return [ Couchbase\GetOptions ]
- }
-
- Method [ <internal:couchbase> public method decoder ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> callable $arg ]
+ - Parameters [0] {
}
- - Return [ Couchbase\GetOptions ]
+ - Return [ array ]
}
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\GetAndTouchOptions ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [2] {
- Property [ private $timeout = NULL ]
- Property [ private $decoder = NULL ]
- }
- - Methods [2] {
- Method [ <internal:couchbase> public method timeout ] {
+ Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
+ - Parameters [3] {
+ Parameter #0 [ <optional> string $message = "" ]
+ Parameter #1 [ <optional> int $code = 0 ]
+ Parameter #2 [ <optional> ?Throwable $previous = null ]
}
- - Return [ Couchbase\GetAndTouchOptions ]
}
- Method [ <internal:couchbase> public method decoder ] {
+ Method [ <internal:Core, inherits Exception> public method __wakeup ] {
- - Parameters [1] {
- Parameter #0 [ <required> callable $arg ]
+ - Parameters [0] {
}
- - Return [ Couchbase\GetAndTouchOptions ]
}
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\GetAndLockOptions ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [2] {
- Property [ private $timeout = NULL ]
- Property [ private $decoder = NULL ]
- }
- - Methods [2] {
- Method [ <internal:couchbase> public method timeout ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
+ - Parameters [0] {
}
- - Return [ Couchbase\GetAndLockOptions ]
+ - Return [ string ]
}
- Method [ <internal:couchbase> public method decoder ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {
- - Parameters [1] {
- Parameter #0 [ <required> callable $arg ]
+ - Parameters [0] {
}
- - Return [ Couchbase\GetAndLockOptions ]
}
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\GetAllReplicasOptions ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
- - Properties [2] {
- Property [ private $timeout = NULL ]
- Property [ private $decoder = NULL ]
- }
-
- - Methods [2] {
- Method [ <internal:couchbase> public method timeout ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
+ - Parameters [0] {
}
- - Return [ Couchbase\GetAllReplicasOptions ]
+ - Return [ string ]
}
- Method [ <internal:couchbase> public method decoder ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {
- - Parameters [1] {
- Parameter #0 [ <required> callable $arg ]
+ - Parameters [0] {
}
- - Return [ Couchbase\GetAllReplicasOptions ]
+ - Return [ int ]
}
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\GetAnyReplicaOptions ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
- - Properties [2] {
- Property [ private $timeout = NULL ]
- Property [ private $decoder = NULL ]
- }
-
- - Methods [2] {
- Method [ <internal:couchbase> public method timeout ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
+ - Parameters [0] {
}
- - Return [ Couchbase\GetAnyReplicaOptions ]
+ - Return [ array ]
}
- Method [ <internal:couchbase> public method decoder ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {
- - Parameters [1] {
- Parameter #0 [ <required> callable $arg ]
+ - Parameters [0] {
}
- - Return [ Couchbase\GetAnyReplicaOptions ]
+ - Return [ ?Throwable ]
}
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\ExistsOptions ] {
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [1] {
- Property [ private $timeout = NULL ]
- }
-
- - Methods [1] {
- Method [ <internal:couchbase> public method timeout ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
+ - Parameters [0] {
}
- - Return [ Couchbase\ExistsOptions ]
+ - Return [ string ]
}
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\UnlockOptions ] {
-
- - Constants [0] {
- }
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [1] {
- Property [ private $timeout = NULL ]
- }
-
- - Methods [1] {
- Method [ <internal:couchbase> public method timeout ] {
+ Method [ <internal:Core, inherits Exception, prototype Stringable> public method __toString ] {
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
+ - Parameters [0] {
}
- - Return [ Couchbase\UnlockOptions ]
+ - Return [ string ]
}
}
}
- Class [ <internal:couchbase> class Couchbase\InsertOptions ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\TransactionFailedException extends Couchbase\Exception\TransactionException implements Throwable, Stringable ] {
- Constants [0] {
}
@@ -13185,1040 +7464,93 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
- Properties [4] {
- Property [ private $timeout = NULL ]
- Property [ private $expiry = NULL ]
- Property [ private $durability_level = NULL ]
- Property [ private $encoder = NULL ]
- }
-
- - Methods [4] {
- Method [ <internal:couchbase> public method timeout ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
- }
- - Return [ Couchbase\InsertOptions ]
- }
-
- Method [ <internal:couchbase> public method expiry ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> $arg ]
- }
- - Return [ Couchbase\InsertOptions ]
- }
-
- Method [ <internal:couchbase> public method durabilityLevel ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
- }
- - Return [ Couchbase\InsertOptions ]
- }
-
- Method [ <internal:couchbase> public method encoder ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> callable $arg ]
- }
- - Return [ Couchbase\InsertOptions ]
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\UpsertOptions ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [6] {
- Property [ private $cas = NULL ]
- Property [ private $timeout = NULL ]
- Property [ private $expiry = NULL ]
- Property [ private $preserve_expiry = NULL ]
- Property [ private $durability_level = NULL ]
- Property [ private $encoder = NULL ]
- }
-
- - Methods [6] {
- Method [ <internal, deprecated:couchbase> public method cas ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $arg ]
- }
- - Return [ Couchbase\UpsertOptions ]
- }
-
- Method [ <internal:couchbase> public method timeout ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
- }
- - Return [ Couchbase\UpsertOptions ]
- }
-
- Method [ <internal:couchbase> public method expiry ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> $arg ]
- }
- - Return [ Couchbase\UpsertOptions ]
- }
-
- Method [ <internal:couchbase> public method preserveExpiry ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> bool $shouldPreserve ]
- }
- - Return [ Couchbase\UpsertOptions ]
- }
-
- Method [ <internal:couchbase> public method durabilityLevel ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
- }
- - Return [ Couchbase\UpsertOptions ]
- }
-
- Method [ <internal:couchbase> public method encoder ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> callable $arg ]
- }
- - Return [ Couchbase\UpsertOptions ]
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\ReplaceOptions ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [6] {
- Property [ private $cas = NULL ]
- Property [ private $timeout = NULL ]
- Property [ private $expiry = NULL ]
- Property [ private $preserve_expiry = NULL ]
- Property [ private $durability_level = NULL ]
- Property [ private $encoder = NULL ]
- }
-
- - Methods [6] {
- Method [ <internal:couchbase> public method cas ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $arg ]
- }
- - Return [ Couchbase\ReplaceOptions ]
- }
-
- Method [ <internal:couchbase> public method timeout ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
- }
- - Return [ Couchbase\ReplaceOptions ]
- }
-
- Method [ <internal:couchbase> public method expiry ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> $arg ]
- }
- - Return [ Couchbase\ReplaceOptions ]
- }
-
- Method [ <internal:couchbase> public method preserveExpiry ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> bool $shouldPreserve ]
- }
- - Return [ Couchbase\ReplaceOptions ]
- }
-
- Method [ <internal:couchbase> public method durabilityLevel ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
- }
- - Return [ Couchbase\ReplaceOptions ]
- }
-
- Method [ <internal:couchbase> public method encoder ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> callable $arg ]
- }
- - Return [ Couchbase\ReplaceOptions ]
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\AppendOptions ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [3] {
- Property [ private $cas = NULL ]
- Property [ private $timeout = NULL ]
- Property [ private $durability_level = NULL ]
- }
-
- - Methods [3] {
- Method [ <internal:couchbase> public method cas ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $arg ]
- }
- - Return [ Couchbase\AppendOptions ]
- }
-
- Method [ <internal:couchbase> public method timeout ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
- }
- - Return [ Couchbase\AppendOptions ]
- }
-
- Method [ <internal:couchbase> public method durabilityLevel ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
- }
- - Return [ Couchbase\AppendOptions ]
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\PrependOptions ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [3] {
- Property [ private $cas = NULL ]
- Property [ private $timeout = NULL ]
- Property [ private $durability_level = NULL ]
- }
-
- - Methods [3] {
- Method [ <internal:couchbase> public method cas ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $arg ]
- }
- - Return [ Couchbase\PrependOptions ]
- }
-
- Method [ <internal:couchbase> public method timeout ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
- }
- - Return [ Couchbase\PrependOptions ]
- }
-
- Method [ <internal:couchbase> public method durabilityLevel ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
- }
- - Return [ Couchbase\PrependOptions ]
- }
- }
- }
-
- Interface [ <internal:couchbase> interface Couchbase\DurabilityLevel ] {
-
- - Constants [4] {
- Constant [ public int NONE ] { 0 }
- Constant [ public int MAJORITY ] { 1 }
- Constant [ public int MAJORITY_AND_PERSIST_TO_ACTIVE ] { 2 }
- Constant [ public int PERSIST_TO_MAJORITY ] { 3 }
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [0] {
- }
-
- - Methods [0] {
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\TouchOptions ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [1] {
- Property [ private $timeout = NULL ]
- }
-
- - Methods [1] {
- Method [ <internal:couchbase> public method timeout ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
- }
- - Return [ Couchbase\TouchOptions ]
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\IncrementOptions ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [5] {
- Property [ private $timeout = NULL ]
- Property [ private $expiry = NULL ]
- Property [ private $durability_level = NULL ]
- Property [ private $delta = NULL ]
- Property [ private $initial = NULL ]
- }
-
- - Methods [6] {
- Method [ <internal:couchbase> public method expiry ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
- }
- - Return [ Couchbase\IncrementOptions ]
- }
-
- Method [ <internal:couchbase> public method timeout ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
- }
- - Return [ Couchbase\IncrementOptions ]
- }
-
- Method [ <internal:couchbase> public method durabilityLevel ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
- }
- - Return [ Couchbase\IncrementOptions ]
- }
-
- Method [ <internal:couchbase> public method delta ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
- }
- - Return [ Couchbase\IncrementOptions ]
- }
-
- Method [ <internal:couchbase> public method initial ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
- }
- - Return [ Couchbase\IncrementOptions ]
- }
-
- Method [ <internal:couchbase> public method cas ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $arg ]
- }
- - Return [ Couchbase\IncrementOptions ]
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\DecrementOptions ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [5] {
- Property [ private $timeout = NULL ]
- Property [ private $expiry = NULL ]
- Property [ private $durability_level = NULL ]
- Property [ private $delta = NULL ]
- Property [ private $initial = NULL ]
- }
-
- - Methods [6] {
- Method [ <internal:couchbase> public method expiry ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
- }
- - Return [ Couchbase\DecrementOptions ]
- }
-
- Method [ <internal:couchbase> public method timeout ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
- }
- - Return [ Couchbase\DecrementOptions ]
- }
-
- Method [ <internal:couchbase> public method durabilityLevel ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
- }
- - Return [ Couchbase\DecrementOptions ]
- }
-
- Method [ <internal:couchbase> public method delta ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
- }
- - Return [ Couchbase\DecrementOptions ]
- }
-
- Method [ <internal:couchbase> public method initial ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
- }
- - Return [ Couchbase\DecrementOptions ]
- }
-
- Method [ <internal:couchbase> public method cas ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $arg ]
- }
- - Return [ Couchbase\DecrementOptions ]
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\RemoveOptions ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [3] {
- Property [ private $timeout = NULL ]
- Property [ private $cas = NULL ]
- Property [ private $durability_level = NULL ]
- }
-
- - Methods [3] {
- Method [ <internal:couchbase> public method cas ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $arg ]
- }
- - Return [ Couchbase\RemoveOptions ]
- }
-
- Method [ <internal:couchbase> public method timeout ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
- }
- - Return [ Couchbase\RemoveOptions ]
- }
-
- Method [ <internal:couchbase> public method durabilityLevel ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
- }
- - Return [ Couchbase\RemoveOptions ]
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\LookupInOptions ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [2] {
- Property [ private $timeout = NULL ]
- Property [ private $with_expiry = NULL ]
- }
-
- - Methods [2] {
- Method [ <internal:couchbase> public method timeout ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
- }
- - Return [ Couchbase\LookupInOptions ]
- }
-
- Method [ <internal:couchbase> public method withExpiry ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> bool $arg ]
- }
- - Return [ Couchbase\LookupInOptions ]
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\MutateInOptions ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [6] {
- Property [ private $cas = NULL ]
- Property [ private $timeout = NULL ]
- Property [ private $expiry = NULL ]
- Property [ private $preserve_expiry = NULL ]
- Property [ private $durability_level = NULL ]
- Property [ private $store_semantics = NULL ]
- }
-
- - Methods [6] {
- Method [ <internal:couchbase> public method cas ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $arg ]
- }
- - Return [ Couchbase\MutateInOptions ]
- }
-
- Method [ <internal:couchbase> public method timeout ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
- }
- - Return [ Couchbase\MutateInOptions ]
- }
-
- Method [ <internal:couchbase> public method expiry ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> $arg ]
- }
- - Return [ Couchbase\MutateInOptions ]
- }
-
- Method [ <internal:couchbase> public method preserveExpiry ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> bool $shouldPreserve ]
- }
- - Return [ Couchbase\MutateInOptions ]
- }
-
- Method [ <internal:couchbase> public method durabilityLevel ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
- }
- - Return [ Couchbase\MutateInOptions ]
- }
-
- Method [ <internal:couchbase> public method storeSemantics ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
- }
- - Return [ Couchbase\MutateInOptions ]
- }
- }
- }
-
- Interface [ <internal:couchbase> interface Couchbase\StoreSemantics ] {
-
- - Constants [3] {
- Constant [ public int REPLACE ] { 0 }
- Constant [ public int UPSERT ] { 1 }
- Constant [ public int INSERT ] { 2 }
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [0] {
- }
-
- - Methods [0] {
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\ViewOptions ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [5] {
- Property [ private $timeout = NULL ]
- Property [ private $include_docs = NULL ]
- Property [ private $max_concurrent_docs = NULL ]
- Property [ private $query = NULL ]
- Property [ private $body = NULL ]
+ Property [ protected $message = '' ]
+ Property [ protected $code = 0 ]
+ Property [ protected $file = NULL ]
+ Property [ protected $line = NULL ]
}
- - Methods [14] {
- Method [ <internal:couchbase> public method timeout ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
- }
- - Return [ Couchbase\ViewOptions ]
- }
-
- Method [ <internal:couchbase> public method includeDocuments ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> bool $arg ]
- Parameter #1 [ <optional> ?int $maxConcurrentDocuments = <default> ]
- }
- - Return [ Couchbase\ViewOptions ]
- }
-
- Method [ <internal:couchbase> public method key ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> $arg ]
- }
- - Return [ Couchbase\ViewOptions ]
- }
-
- Method [ <internal:couchbase> public method keys ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> array $arg ]
- }
- - Return [ Couchbase\ViewOptions ]
- }
-
- Method [ <internal:couchbase> public method limit ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
- }
- - Return [ Couchbase\ViewOptions ]
- }
-
- Method [ <internal:couchbase> public method skip ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
- }
- - Return [ Couchbase\ViewOptions ]
- }
-
- Method [ <internal:couchbase> public method scanConsistency ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
- }
- - Return [ Couchbase\ViewOptions ]
- }
-
- Method [ <internal:couchbase> public method order ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
- }
- - Return [ Couchbase\ViewOptions ]
- }
-
- Method [ <internal:couchbase> public method reduce ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- - Parameters [1] {
- Parameter #0 [ <required> bool $arg ]
- }
- - Return [ Couchbase\ViewOptions ]
- }
-
- Method [ <internal:couchbase> public method group ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> bool $arg ]
- }
- - Return [ Couchbase\ViewOptions ]
- }
-
- Method [ <internal:couchbase> public method groupLevel ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
- }
- - Return [ Couchbase\ViewOptions ]
- }
-
- Method [ <internal:couchbase> public method range ] {
-
- - Parameters [3] {
- Parameter #0 [ <required> $start ]
- Parameter #1 [ <required> null $end ]
- Parameter #2 [ <optional> bool $inclusiveEnd = <default> ]
+ - Parameters [0] {
}
- - Return [ Couchbase\ViewOptions ]
+ - Return [ array ]
}
- Method [ <internal:couchbase> public method idRange ] {
+ Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
- Parameters [3] {
- Parameter #0 [ <required> string $start ]
- Parameter #1 [ <required> ?string $end ]
- Parameter #2 [ <optional> bool $inclusiveEnd = <default> ]
- }
- - Return [ Couchbase\ViewOptions ]
- }
-
- Method [ <internal:couchbase> public method raw ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> string $key ]
- Parameter #1 [ <required> $value ]
- }
- - Return [ Couchbase\ViewOptions ]
- }
- }
- }
-
- Interface [ <internal:couchbase> interface Couchbase\ViewScanConsistency ] {
-
- - Constants [3] {
- Constant [ public int NOT_BOUNDED ] { 0 }
- Constant [ public int REQUEST_PLUS ] { 1 }
- Constant [ public int UPDATE_AFTER ] { 2 }
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [0] {
- }
-
- - Methods [0] {
- }
- }
-
- Interface [ <internal:couchbase> interface Couchbase\ViewOrdering ] {
-
- - Constants [2] {
- Constant [ public int ASCENDING ] { 0 }
- Constant [ public int DESCENDING ] { 1 }
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [0] {
- }
-
- - Methods [0] {
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\QueryOptions ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [18] {
- Property [ private $timeout = NULL ]
- Property [ private $adhoc = NULL ]
- Property [ private $metrics = NULL ]
- Property [ private $readonly = NULL ]
- Property [ private $flex_index = NULL ]
- Property [ private $scan_cap = NULL ]
- Property [ private $pipeline_batch = NULL ]
- Property [ private $pipeline_cap = NULL ]
- Property [ private $scan_consistency = NULL ]
- Property [ private $consistent_with = NULL ]
- Property [ private $positional_params = NULL ]
- Property [ private $named_params = NULL ]
- Property [ private $raw_params = NULL ]
- Property [ private $max_parallelism = NULL ]
- Property [ private $profile = NULL ]
- Property [ private $client_context_id = NULL ]
- Property [ private $scope_name = NULL ]
- Property [ private $scope_qualifier = NULL ]
- }
-
- - Methods [18] {
- Method [ <internal:couchbase> public method timeout ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
- }
- - Return [ Couchbase\QueryOptions ]
- }
-
- Method [ <internal:couchbase> public method scanConsistency ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
- }
- - Return [ Couchbase\QueryOptions ]
- }
-
- Method [ <internal:couchbase> public method consistentWith ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> Couchbase\MutationState $arg ]
- }
- - Return [ Couchbase\QueryOptions ]
- }
-
- Method [ <internal:couchbase> public method scanCap ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
- }
- - Return [ Couchbase\QueryOptions ]
- }
-
- Method [ <internal:couchbase> public method pipelineCap ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
- }
- - Return [ Couchbase\QueryOptions ]
- }
-
- Method [ <internal:couchbase> public method pipelineBatch ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
- }
- - Return [ Couchbase\QueryOptions ]
- }
-
- Method [ <internal:couchbase> public method readonly ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> bool $arg ]
- }
- - Return [ Couchbase\QueryOptions ]
- }
-
- Method [ <internal:couchbase> public method flexIndex ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> bool $arg ]
- }
- - Return [ Couchbase\QueryOptions ]
- }
-
- Method [ <internal:couchbase> public method adhoc ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> bool $arg ]
+ Parameter #0 [ <optional> string $message = "" ]
+ Parameter #1 [ <optional> int $code = 0 ]
+ Parameter #2 [ <optional> ?Throwable $previous = null ]
}
- - Return [ Couchbase\QueryOptions ]
}
- Method [ <internal:couchbase> public method metrics ] {
+ Method [ <internal:Core, inherits Exception> public method __wakeup ] {
- - Parameters [1] {
- Parameter #0 [ <required> bool $arg ]
+ - Parameters [0] {
}
- - Return [ Couchbase\QueryOptions ]
}
- Method [ <internal:couchbase> public method namedParameters ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {
- - Parameters [1] {
- Parameter #0 [ <required> array $arg ]
+ - Parameters [0] {
}
- - Return [ Couchbase\QueryOptions ]
+ - Return [ string ]
}
- Method [ <internal:couchbase> public method positionalParameters ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {
- - Parameters [1] {
- Parameter #0 [ <required> array $arg ]
+ - Parameters [0] {
}
- - Return [ Couchbase\QueryOptions ]
}
- Method [ <internal:couchbase> public method raw ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {
- - Parameters [2] {
- Parameter #0 [ <required> string $key ]
- Parameter #1 [ <required> null $value ]
+ - Parameters [0] {
}
- - Return [ Couchbase\QueryOptions ]
+ - Return [ string ]
}
- Method [ <internal:couchbase> public method maxParallelism ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
+ - Parameters [0] {
}
- - Return [ Couchbase\QueryOptions ]
+ - Return [ int ]
}
- Method [ <internal:couchbase> public method profile ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {
- - Parameters [1] {
- Parameter #0 [ <required> int $arg ]
+ - Parameters [0] {
}
- - Return [ Couchbase\QueryOptions ]
+ - Return [ array ]
}
- Method [ <internal:couchbase> public method clientContextId ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {
- - Parameters [1] {
- Parameter #0 [ <required> string $value ]
+ - Parameters [0] {
}
- - Return [ Couchbase\QueryOptions ]
+ - Return [ ?Throwable ]
}
- Method [ <internal:couchbase> public method scopeName ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {
- - Parameters [1] {
- Parameter #0 [ <required> string $value ]
+ - Parameters [0] {
}
- - Return [ Couchbase\QueryOptions ]
+ - Return [ string ]
}
- Method [ <internal:couchbase> public method scopeQualifier ] {
+ Method [ <internal:Core, inherits Exception, prototype Stringable> public method __toString ] {
- - Parameters [1] {
- Parameter #0 [ <required> string $value ]
+ - Parameters [0] {
}
- - Return [ Couchbase\QueryOptions ]
+ - Return [ string ]
}
}
}
- Interface [ <internal:couchbase> interface Couchbase\QueryScanConsistency ] {
-
- - Constants [3] {
- Constant [ public int NOT_BOUNDED ] { 1 }
- Constant [ public int REQUEST_PLUS ] { 2 }
- Constant [ public int STATEMENT_PLUS ] { 3 }
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [0] {
- }
-
- - Methods [0] {
- }
- }
-
- Interface [ <internal:couchbase> interface Couchbase\QueryProfile ] {
-
- - Constants [3] {
- Constant [ public int OFF ] { 1 }
- Constant [ public int PHASES ] { 2 }
- Constant [ public int TIMINGS ] { 3 }
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [0] {
- }
-
- - Methods [0] {
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\ViewIndexManager ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\TransactionExpiredException extends Couchbase\Exception\TransactionException implements Throwable, Stringable ] {
- Constants [0] {
}
@@ -14229,163 +7561,94 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
- Static methods [0] {
}
- - Properties [1] {
- Property [ private $bucket = NULL ]
+ - Properties [4] {
+ Property [ protected $message = '' ]
+ Property [ protected $code = 0 ]
+ Property [ protected $file = NULL ]
+ Property [ protected $line = NULL ]
}
- - Methods [4] {
- Method [ <internal:couchbase> public method getAllDesignDocuments ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- Return [ array ]
}
- Method [ <internal:couchbase> public method getDesignDocument ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> $name ]
- }
- - Return [ Couchbase\DesignDocument ]
- }
-
- Method [ <internal:couchbase> public method dropDesignDocument ] {
+ Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
- - Parameters [1] {
- Parameter #0 [ <required> $name ]
+ - Parameters [3] {
+ Parameter #0 [ <optional> string $message = "" ]
+ Parameter #1 [ <optional> int $code = 0 ]
+ Parameter #2 [ <optional> ?Throwable $previous = null ]
}
}
- Method [ <internal:couchbase> public method upsertDesignDocument ] {
+ Method [ <internal:Core, inherits Exception> public method __wakeup ] {
- - Parameters [1] {
- Parameter #0 [ <required> Couchbase\DesignDocument $document ]
+ - Parameters [0] {
}
}
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\DesignDocument implements JsonSerializable ] {
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [2] {
- Property [ private $name = NULL ]
- Property [ private $views = NULL ]
- }
-
- - Methods [5] {
- Method [ <internal:couchbase> public method name ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {
- Parameters [0] {
}
- Return [ string ]
}
- Method [ <internal:couchbase> public method views ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {
- Parameters [0] {
}
- - Return [ array ]
}
- Method [ <internal:couchbase> public method setName ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {
- - Parameters [1] {
- Parameter #0 [ <required> string $name ]
+ - Parameters [0] {
}
- - Return [ Couchbase\DesignDocument ]
+ - Return [ string ]
}
- Method [ <internal:couchbase> public method setViews ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {
- - Parameters [1] {
- Parameter #0 [ <required> array $views ]
+ - Parameters [0] {
}
- - Return [ Couchbase\DesignDocument ]
+ - Return [ int ]
}
- Method [ <internal:couchbase, prototype JsonSerializable> public method jsonSerialize ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {
- Parameters [0] {
}
+ - Return [ array ]
}
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\View ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [3] {
- Property [ private $name = NULL ]
- Property [ private $map = NULL ]
- Property [ private $reduce = NULL ]
- }
- - Methods [6] {
- Method [ <internal:couchbase> public method name ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {
- Parameters [0] {
}
- - Return [ string ]
+ - Return [ ?Throwable ]
}
- Method [ <internal:couchbase> public method map ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {
- Parameters [0] {
}
- Return [ string ]
}
- Method [ <internal:couchbase> public method reduce ] {
+ Method [ <internal:Core, inherits Exception, prototype Stringable> public method __toString ] {
- Parameters [0] {
}
- Return [ string ]
}
-
- Method [ <internal:couchbase> public method setName ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $name ]
- }
- - Return [ Couchbase\View ]
- }
-
- Method [ <internal:couchbase> public method setMap ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $map_js_code ]
- }
- - Return [ Couchbase\View ]
- }
-
- Method [ <internal:couchbase> public method setReduce ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> string $reduce_js_code ]
- }
- - Return [ Couchbase\View ]
- }
}
}
- Class [ <internal:couchbase> class Couchbase\ClusterOptions ] {
+ Class [ <internal:couchbase> class Couchbase\Exception\TransactionCommitAmbiguousException extends Couchbase\Exception\TransactionException implements Throwable, Stringable ] {
- Constants [0] {
}
@@ -14397,438 +7660,88 @@ Extension [ <persistent> extension #119 couchbase version 3.2.2 ] {
}
- Properties [4] {
- Property [ private $username = NULL ]
- Property [ private $password = NULL ]
- Property [ private $meter = NULL ]
- Property [ private $tracer = NULL ]
- }
-
- - Methods [3] {
- Method [ <internal:couchbase> public method credentials ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> string $username ]
- Parameter #1 [ <optional> string $password = <default> ]
- }
- - Return [ Couchbase\ClusterOptions ]
- }
-
- Method [ <internal:couchbase> public method meter ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> Couchbase\Meter $meter ]
- }
- - Return [ Couchbase\ClusterOptions ]
- }
-
- Method [ <internal:couchbase> public method tracer ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> Couchbase\RequestTracer $tracer ]
- }
- - Return [ Couchbase\ClusterOptions ]
- }
- }
- }
-
- Interface [ <internal:couchbase> interface Couchbase\ValueRecorder ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [0] {
- }
-
- - Methods [1] {
- Method [ <internal:couchbase> abstract public method recordValue ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $value ]
- }
- - Return [ void ]
- }
- }
- }
-
- Interface [ <internal:couchbase> interface Couchbase\Meter ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [0] {
- }
-
- - Methods [1] {
- Method [ <internal:couchbase> abstract public method valueRecorder ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> string $name ]
- Parameter #1 [ <required> array $tags ]
- }
- - Return [ Couchbase\ValueRecorder ]
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\LoggingValueRecorder implements Couchbase\ValueRecorder ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [0] {
- }
-
- - Methods [1] {
- Method [ <internal:couchbase, prototype Couchbase\ValueRecorder> public method recordValue ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $value ]
- }
- - Return [ void ]
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\LoggingMeter implements Couchbase\Meter ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [1] {
- Property [ private $flush_interval = NULL ]
- }
-
- - Methods [2] {
- Method [ <internal:couchbase, prototype Couchbase\Meter> public method valueRecorder ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> string $name ]
- Parameter #1 [ <required> array $tags ]
- }
- - Return [ Couchbase\ValueRecorder ]
- }
-
- Method [ <internal:couchbase> public method flushInterval ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $duration ]
- }
- - Return [ Couchbase\LoggingMeter ]
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\NoopValueRecorder implements Couchbase\ValueRecorder ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [0] {
- }
-
- - Methods [1] {
- Method [ <internal:couchbase, prototype Couchbase\ValueRecorder> public method recordValue ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $value ]
- }
- - Return [ void ]
- }
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\NoopMeter implements Couchbase\Meter ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [0] {
- }
-
- - Methods [1] {
- Method [ <internal:couchbase, prototype Couchbase\Meter> public method valueRecorder ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> string $name ]
- Parameter #1 [ <required> array $tags ]
- }
- - Return [ Couchbase\ValueRecorder ]
- }
- }
- }
-
- Interface [ <internal:couchbase> interface Couchbase\RequestSpan ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [0] {
+ Property [ protected $message = '' ]
+ Property [ protected $code = 0 ]
+ Property [ protected $file = NULL ]
+ Property [ protected $line = NULL ]
}
- - Methods [2] {
- Method [ <internal:couchbase> abstract public method addTag ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> string $key ]
- Parameter #1 [ <required> $value ]
- }
- - Return [ void ]
- }
-
- Method [ <internal:couchbase> abstract public method end ] {
+ - Methods [11] {
+ Method [ <internal:couchbase, inherits Couchbase\Exception\CouchbaseException> public method getContext ] {
- Parameters [0] {
}
- - Return [ void ]
- }
- }
- }
-
- Interface [ <internal:couchbase> interface Couchbase\RequestTracer ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [0] {
- }
-
- - Methods [1] {
- Method [ <internal:couchbase> abstract public method requestSpan ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> string $name ]
- Parameter #1 [ <required> ?Couchbase\RequestSpan $parent ]
- }
- - Return [ Couchbase\RequestSpan ]
+ - Return [ array ]
}
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\LoggingRequestSpan implements Couchbase\RequestSpan ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
- - Properties [0] {
- }
-
- - Methods [2] {
- Method [ <internal:couchbase, prototype Couchbase\RequestSpan> public method addTag ] {
+ Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
- - Parameters [2] {
- Parameter #0 [ <required> string $key ]
- Parameter #1 [ <required> $value ]
+ - Parameters [3] {
+ Parameter #0 [ <optional> string $message = "" ]
+ Parameter #1 [ <optional> int $code = 0 ]
+ Parameter #2 [ <optional> ?Throwable $previous = null ]
}
- - Return [ void ]
}
- Method [ <internal:couchbase, prototype Couchbase\RequestSpan> public method end ] {
+ Method [ <internal:Core, inherits Exception> public method __wakeup ] {
- Parameters [0] {
}
- - Return [ void ]
}
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\ThresholdLoggingTracer implements Couchbase\RequestTracer ] {
-
- - Constants [0] {
- }
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [7] {
- Property [ private $emit_interval = NULL ]
- Property [ private $kv_threshold = NULL ]
- Property [ private $query_threshold = NULL ]
- Property [ private $views_threshold = NULL ]
- Property [ private $search_threshold = NULL ]
- Property [ private $analytics_threshold = NULL ]
- Property [ private $sample_size = NULL ]
- }
-
- - Methods [8] {
- Method [ <internal:couchbase, prototype Couchbase\RequestTracer> public method requestSpan ] {
-
- - Parameters [2] {
- Parameter #0 [ <required> string $name ]
- Parameter #1 [ <required> ?Couchbase\RequestSpan $parent ]
- }
- - Return [ Couchbase\RequestSpan ]
- }
-
- Method [ <internal:couchbase> public method emitInterval ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $duration ]
- }
- - Return [ Couchbase\ThresholdLoggingTracer ]
- }
-
- Method [ <internal:couchbase> public method kvThreshold ] {
-
- - Parameters [1] {
- Parameter #0 [ <required> int $threshold ]
- }
- - Return [ Couchbase\ThresholdLoggingTracer ]
- }
-
- Method [ <internal:couchbase> public method queryThreshold ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {
- - Parameters [1] {
- Parameter #0 [ <required> int $threshold ]
+ - Parameters [0] {
}
- - Return [ Couchbase\ThresholdLoggingTracer ]
+ - Return [ string ]
}
- Method [ <internal:couchbase> public method viewsThreshold ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {
- - Parameters [1] {
- Parameter #0 [ <required> int $threshold ]
+ - Parameters [0] {
}
- - Return [ Couchbase\ThresholdLoggingTracer ]
}
- Method [ <internal:couchbase> public method searchThreshold ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {
- - Parameters [1] {
- Parameter #0 [ <required> int $threshold ]
+ - Parameters [0] {
}
- - Return [ Couchbase\ThresholdLoggingTracer ]
+ - Return [ string ]
}
- Method [ <internal:couchbase> public method analyticsThreshold ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {
- - Parameters [1] {
- Parameter #0 [ <required> int $threshold ]
+ - Parameters [0] {
}
- - Return [ Couchbase\ThresholdLoggingTracer ]
+ - Return [ int ]
}
- Method [ <internal:couchbase> public method sampleSize ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {
- - Parameters [1] {
- Parameter #0 [ <required> int $size ]
+ - Parameters [0] {
}
- - Return [ Couchbase\ThresholdLoggingTracer ]
+ - Return [ array ]
}
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\NoopRequestSpan implements Couchbase\RequestSpan ] {
-
- - Constants [0] {
- }
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
-
- - Properties [0] {
- }
-
- - Methods [2] {
- Method [ <internal:couchbase, prototype Couchbase\RequestSpan> public method addTag ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {
- - Parameters [2] {
- Parameter #0 [ <required> string $key ]
- Parameter #1 [ <required> $value ]
+ - Parameters [0] {
}
- - Return [ void ]
+ - Return [ ?Throwable ]
}
- Method [ <internal:couchbase, prototype Couchbase\RequestSpan> public method end ] {
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {
- Parameters [0] {
}
- - Return [ void ]
+ - Return [ string ]
}
- }
- }
-
- Class [ <internal:couchbase> class Couchbase\NoopTracer implements Couchbase\RequestTracer ] {
-
- - Constants [0] {
- }
-
- - Static properties [0] {
- }
-
- - Static methods [0] {
- }
- - Properties [0] {
- }
-
- - Methods [1] {
- Method [ <internal:couchbase, prototype Couchbase\RequestTracer> public method requestSpan ] {
+ Method [ <internal:Core, inherits Exception, prototype Stringable> public method __toString ] {
- - Parameters [2] {
- Parameter #0 [ <required> string $name ]
- Parameter #1 [ <required> ?Couchbase\RequestSpan $parent ]
+ - Parameters [0] {
}
- - Return [ Couchbase\RequestSpan ]
+ - Return [ string ]
}
}
}
diff --git a/php-pecl-couchbase4.spec b/php-pecl-couchbase4.spec
index 8373c69..cc7a160 100644
--- a/php-pecl-couchbase4.spec
+++ b/php-pecl-couchbase4.spec
@@ -28,12 +28,35 @@ Summary: Couchbase Server PHP extension
Name: %{?scl_prefix}php-pecl-couchbase4
Version: 4.0.0
Release: 1%{?dist}%{!?scl:%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')}}
-License: PHP
+# ASL 2.0
+# src
+# third_party/json/LICENSE.ryu
+## BSD
+# third_party/snappy/COPYING
+# third_party/hdr_histogram_c/LICENSE.txt
+# third_party/hdr_histogram_c/COPYING.txt
+# third_party/json/LICENSE.double-conversion
+## MIT
+# third_party/fmt/LICENSE.rst
+# third_party/gsl/LICENSE
+# third_party/http_parser/LICENSE-MIT
+# third_party/json/external/PEGTL/LICENSE
+# third_party/json/LICENSE
+# third_party/json/LICENSE.itoa
+# third_party/jsonsl/LICENSE
+# third_party/spdlog/LICENSE
+License: ASL 2.0 and BSD and MIT
URL: https://pecl.php.net/package/couchbase
Source0: https://pecl.php.net/get/%{pecl_name}-%{version}%{?prever}.tgz
+Patch0: https://patch-diff.githubusercontent.com/raw/couchbase/couchbase-php-client/pull/32.patch
+
BuildRequires: make
+%if 0%{?rhel} == 7
+BuildRequires: cmake3 >= 3.17
+%else
BuildRequires: cmake >= 3.17
+%endif
BuildRequires: %{?dtsprefix}gcc
BuildRequires: %{?dtsprefix}gcc-c++
BuildRequires: %{?scl_prefix}php-devel >= 7.4
@@ -41,6 +64,7 @@ BuildRequires: %{?scl_prefix}php-pear
BuildRequires: %{?scl_prefix}php-json
BuildRequires: %{?scl_prefix}php-tokenizer
BuildRequires: zlib-devel
+BuildRequires: openssl-devel
Requires: %{?scl_prefix}php(zend-abi) = %{php_zend_api}
Requires: %{?scl_prefix}php(api) = %{php_core_api}
@@ -82,9 +106,10 @@ Provides: bundled(spdlog)
The PHP client library provides fast access to documents stored
in a Couchbase Server.
-* %{?scl_prefix}php-pecl-couchbase provides API version 1.
+* %{?scl_prefix}php-pecl-couchbase provides API version 1.
* %{?scl_prefix}php-pecl-couchbase2 provides API version 2.
-* this package provides API version 3.
+* %{?scl_prefix}php-pecl-couchbase3 provides API version 3.
+* this package provides API version 4.
Package built for PHP %(%{__php} -r 'echo PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')%{?scl: as Software Collection (%{scl} by %{?scl_vendor}%{!?scl_vendor:rh})}.
@@ -112,6 +137,11 @@ cp NTS/src/deps/couchbase-cxx-client/third_party/spdlog/LICENSE
cp NTS/src/deps/couchbase-cxx-client/LICENSE.txt lic/LICENSE.txt
cd NTS
+%patch0 -p1
+%if 0%{?rhel} == 7
+sed -e 's/cmake/cmake3/' -i config.m4
+%endif
+
# Sanity check, really often broken
extver=$(sed -n '/#define PHP_COUCHBASE_VERSION/{s/.* "//;s/".*$//;p}' src/php_couchbase.hxx)
if test "x${extver}" != "x%{version}%{?prever}"; then
@@ -241,6 +271,7 @@ fi
* Wed May 11 2022 Remi Collet <remi@remirepo.net> - 4.0.0-1
- update to 4.0.0
- drop dependency on libcouchbase
+- License is ASL 2.0 and BSD and MIT
* Thu Dec 9 2021 Remi Collet <remi@remirepo.net> - 3.2.2-1
- update to 3.2.2