From 4d61851a6cd8847d09022805bb94949df243a9a2 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 8 Mar 2017 09:50:58 +0100 Subject: php-pecl-couchbase2: 2.3.0 --- REFLECTION | 2575 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 2520 insertions(+), 55 deletions(-) (limited to 'REFLECTION') diff --git a/REFLECTION b/REFLECTION index efeb781..9eade7d 100644 --- a/REFLECTION +++ b/REFLECTION @@ -1,17 +1,32 @@ -Extension [ extension #155 couchbase version 2.2.4 ] { +Extension [ extension #163 couchbase version 2.3.0 ] { - Dependencies { Dependency [ json (Required) ] - Dependency [ pcs (Required) ] + Dependency [ igbinary (Required) ] } - INI { Entry [ couchbase.log_level ] Current = 'WARN' } + Entry [ couchbase.encoder.format ] + Current = 'json' + } + Entry [ couchbase.encoder.compression ] + Current = 'off' + } + Entry [ couchbase.encoder.compression_threshold ] + Current = '0' + } + Entry [ couchbase.encoder.compression_factor ] + Current = '0.0' + } + Entry [ couchbase.decoder.json_arrays ] + Current = '0' + } } - - Constants [114] { + - Constants [146] { Constant [ integer COUCHBASE_PERSISTTO_MASTER ] { 1 } Constant [ integer COUCHBASE_PERSISTTO_ONE ] { 1 } Constant [ integer COUCHBASE_PERSISTTO_TWO ] { 2 } @@ -126,21 +141,181 @@ Extension [ extension #155 couchbase version 2.2.4 ] { Constant [ integer COUCHBASE_TMPFAIL ] { 11 } Constant [ integer COUCHBASE_KEYALREADYEXISTS ] { 12 } Constant [ integer COUCHBASE_KEYNOTFOUND ] { 13 } + Constant [ integer COUCHBASE_VAL_MASK ] { 31 } + Constant [ integer COUCHBASE_VAL_IS_STRING ] { 0 } + Constant [ integer COUCHBASE_VAL_IS_LONG ] { 1 } + Constant [ integer COUCHBASE_VAL_IS_DOUBLE ] { 2 } + Constant [ integer COUCHBASE_VAL_IS_BOOL ] { 3 } + Constant [ integer COUCHBASE_VAL_IS_SERIALIZED ] { 4 } + Constant [ integer COUCHBASE_VAL_IS_IGBINARY ] { 5 } + Constant [ integer COUCHBASE_VAL_IS_JSON ] { 6 } + Constant [ integer COUCHBASE_COMPRESSION_MASK ] { 224 } + Constant [ integer COUCHBASE_COMPRESSION_NONE ] { 0 } + Constant [ integer COUCHBASE_COMPRESSION_ZLIB ] { 32 } + Constant [ integer COUCHBASE_COMPRESSION_FASTLZ ] { 64 } + Constant [ integer COUCHBASE_COMPRESSION_MCISCOMPRESSED ] { 16 } + Constant [ integer COUCHBASE_SERTYPE_JSON ] { 0 } + Constant [ integer COUCHBASE_SERTYPE_IGBINARY ] { 1 } + Constant [ integer COUCHBASE_SERTYPE_PHP ] { 2 } + Constant [ integer COUCHBASE_CMPRTYPE_NONE ] { 0 } + Constant [ integer COUCHBASE_CMPRTYPE_ZLIB ] { 1 } + Constant [ integer COUCHBASE_CMPRTYPE_FASTLZ ] { 2 } + Constant [ integer COUCHBASE_CFFMT_MASK ] { -16777216 } + Constant [ integer COUCHBASE_CFFMT_PRIVATE ] { 16777216 } + Constant [ integer COUCHBASE_CFFMT_JSON ] { 33554432 } + Constant [ integer COUCHBASE_CFFMT_RAW ] { 50331648 } + Constant [ integer COUCHBASE_CFFMT_STRING ] { 67108864 } + Constant [ integer Couchbase\ENCODER_FORMAT_JSON ] { 0 } + Constant [ integer Couchbase\ENCODER_FORMAT_IGBINARY ] { 1 } + Constant [ integer Couchbase\ENCODER_FORMAT_PHP ] { 2 } + Constant [ integer Couchbase\ENCODER_COMPRESSION_NONE ] { 0 } + Constant [ integer Couchbase\ENCODER_COMPRESSION_ZLIB ] { 1 } + Constant [ integer Couchbase\ENCODER_COMPRESSION_FASTLZ ] { 2 } + Constant [ integer Couchbase\HAVE_IGBINARY ] { 1 } + Constant [ integer Couchbase\HAVE_ZLIB ] { 1 } } - Functions { + Function [ function Couchbase\fastlzCompress ] { + + - Parameters [1] { + Parameter #0 [ $data ] + } + } + Function [ function Couchbase\fastlzDecompress ] { + + - Parameters [1] { + Parameter #0 [ $data ] + } + } + Function [ function Couchbase\zlibCompress ] { + + - Parameters [1] { + Parameter #0 [ $data ] + } + } + Function [ function Couchbase\zlibDecompress ] { + + - Parameters [1] { + Parameter #0 [ $data ] + } + } + Function [ function Couchbase\passthruEncoder ] { + + - Parameters [1] { + Parameter #0 [ $value ] + } + } + Function [ function Couchbase\passthruDecoder ] { + + - Parameters [3] { + Parameter #0 [ $bytes ] + Parameter #1 [ $flags ] + Parameter #2 [ $datatype ] + } + } + Function [ function Couchbase\defaultEncoder ] { + + - Parameters [1] { + Parameter #0 [ $value ] + } + } + Function [ function Couchbase\defaultDecoder ] { + + - Parameters [3] { + Parameter #0 [ $bytes ] + Parameter #1 [ $flags ] + Parameter #2 [ $datatype ] + } + } + Function [ function Couchbase\basicEncoderV1 ] { + + - Parameters [2] { + Parameter #0 [ $value ] + Parameter #1 [ $options ] + } + } + Function [ function Couchbase\basicDecoderV1 ] { + + - Parameters [4] { + Parameter #0 [ $bytes ] + Parameter #1 [ $flags ] + Parameter #2 [ $datatype ] + Parameter #3 [ $options ] + } + } Function [ function couchbase_fastlz_compress ] { + + - Parameters [1] { + Parameter #0 [ $data ] + } } Function [ function couchbase_fastlz_decompress ] { + + - Parameters [1] { + Parameter #0 [ $data ] + } } Function [ function couchbase_zlib_compress ] { + + - Parameters [1] { + Parameter #0 [ $data ] + } } Function [ function couchbase_zlib_decompress ] { + + - Parameters [1] { + Parameter #0 [ $data ] + } + } + Function [ function couchbase_passthru_encoder ] { + + - Parameters [1] { + Parameter #0 [ $value ] + } + } + Function [ function couchbase_passthru_decoder ] { + + - Parameters [3] { + Parameter #0 [ $bytes ] + Parameter #1 [ $flags ] + Parameter #2 [ $datatype ] + } + } + Function [ function couchbase_default_encoder ] { + + - Parameters [1] { + Parameter #0 [ $value ] + } + } + Function [ function couchbase_default_decoder ] { + + - Parameters [3] { + Parameter #0 [ $bytes ] + Parameter #1 [ $flags ] + Parameter #2 [ $datatype ] + } + } + Function [ function couchbase_basic_encoder_v1 ] { + + - Parameters [2] { + Parameter #0 [ $value ] + Parameter #1 [ $options ] + } + } + Function [ function couchbase_basic_decoder_v1 ] { + + - Parameters [4] { + Parameter #0 [ $bytes ] + Parameter #1 [ $flags ] + Parameter #2 [ $datatype ] + Parameter #3 [ $options ] + } } } - - Classes [7] { - Class [ class CouchbaseException extends Exception implements Throwable ] { + - Classes [41] { + Class [ class Couchbase\Exception extends Exception implements Throwable ] { - Constants [0] { } @@ -197,7 +372,7 @@ Extension [ extension #155 couchbase version 2.2.4 ] { } } - Class [ class CouchbaseMetaDoc ] { + Class [ class Couchbase\Document ] { - Constants [0] { } @@ -220,7 +395,7 @@ Extension [ extension #155 couchbase version 2.2.4 ] { } } - Class [ class CouchbaseDocumentFragment ] { + Class [ class Couchbase\DocumentFragment ] { - Constants [0] { } @@ -242,7 +417,7 @@ Extension [ extension #155 couchbase version 2.2.4 ] { } } - Class [ class CouchbaseN1qlIndex ] { + Class [ final class Couchbase\Cluster ] { - Constants [0] { } @@ -253,22 +428,43 @@ Extension [ extension #155 couchbase version 2.2.4 ] { - Static methods [0] { } - - Properties [8] { - Property [ public $name ] - Property [ public $isPrimary ] - Property [ public $type ] - Property [ public $state ] - Property [ public $keyspace ] - Property [ public $namespace ] - Property [ public $fields ] - Property [ public $condition ] + - Properties [0] { } - - Methods [0] { + - Methods [4] { + Method [ final public method __construct ] { + + - Parameters [1] { + Parameter #0 [ $connstr ] + } + } + + Method [ final public method openBucket ] { + + - Parameters [2] { + Parameter #0 [ $name ] + Parameter #1 [ $password ] + } + } + + Method [ final public method manager ] { + + - Parameters [2] { + Parameter #0 [ $username ] + Parameter #1 [ $password ] + } + } + + Method [ final public method authenticate ] { + + - Parameters [1] { + Parameter #0 [ $authenticator ] + } + } } } - Class [ class _CouchbaseCluster ] { + Class [ final class Couchbase\ClusterManager ] { - Constants [0] { } @@ -282,19 +478,43 @@ Extension [ extension #155 couchbase version 2.2.4 ] { - Properties [0] { } - - Methods [3] { - Method [ public method __construct ] { + - Methods [5] { + Method [ final private method __construct ] { + + - Parameters [0] { + } + } + + Method [ final public method listBuckets ] { + + - Parameters [0] { + } + } + + Method [ final public method createBucket ] { + + - Parameters [2] { + Parameter #0 [ $name ] + Parameter #1 [ $options ] + } } - Method [ public method connect ] { + Method [ final public method removeBucket ] { + + - Parameters [1] { + Parameter #0 [ $connstr ] + } } - Method [ public method http_request ] { + Method [ final public method info ] { + + - Parameters [0] { + } } } } - Class [ class _CouchbaseBucket ] { + Class [ final class Couchbase\Bucket ] { - Constants [0] { } @@ -308,79 +528,330 @@ Extension [ extension #155 couchbase version 2.2.4 ] { - Properties [0] { } - - Methods [23] { - Method [ public method __construct ] { + - Methods [40] { + Method [ final private method __construct ] { + + - Parameters [0] { + } + } + + Method [ final private method __get ] { + + - Parameters [1] { + Parameter #0 [ $name ] + } + } + + Method [ final private method __set ] { + + - Parameters [2] { + Parameter #0 [ $name ] + Parameter #1 [ $value ] + } + } + + Method [ final public method setTranscoder ] { + + - Parameters [2] { + Parameter #0 [ callable $encoder ] + Parameter #1 [ callable $decoder ] + } + } + + Method [ final public method get ] { + + - Parameters [2] { + Parameter #0 [ $ids ] + Parameter #1 [ $options ] + } + } + + Method [ final public method getAndLock ] { + + - Parameters [3] { + Parameter #0 [ $ids ] + Parameter #1 [ $lockTime ] + Parameter #2 [ $options ] + } + } + + Method [ final public method getAndTouch ] { + + - Parameters [3] { + Parameter #0 [ $ids ] + Parameter #1 [ $expiry ] + Parameter #2 [ $options ] + } + } + + Method [ final public method getFromReplica ] { + + - Parameters [2] { + Parameter #0 [ $ids ] + Parameter #1 [ $options ] + } + } + + Method [ final public method upsert ] { + + - Parameters [3] { + Parameter #0 [ $id ] + Parameter #1 [ $val ] + Parameter #2 [ $options ] + } + } + + Method [ final public method insert ] { + + - Parameters [3] { + Parameter #0 [ $id ] + Parameter #1 [ $val ] + Parameter #2 [ $options ] + } + } + + Method [ final public method replace ] { + + - Parameters [3] { + Parameter #0 [ $id ] + Parameter #1 [ $val ] + Parameter #2 [ $options ] + } + } + + Method [ final public method append ] { + + - Parameters [3] { + Parameter #0 [ $id ] + Parameter #1 [ $val ] + Parameter #2 [ $options ] + } + } + + Method [ final public method prepend ] { + + - Parameters [3] { + Parameter #0 [ $id ] + Parameter #1 [ $val ] + Parameter #2 [ $options ] + } + } + + Method [ final public method remove ] { + + - Parameters [2] { + Parameter #0 [ $id ] + Parameter #1 [ $options ] + } + } + + Method [ final public method touch ] { + + - Parameters [3] { + Parameter #0 [ $id ] + Parameter #1 [ $expiry ] + Parameter #2 [ $options ] + } + } + + Method [ final public method counter ] { + + - Parameters [3] { + Parameter #0 [ $id ] + Parameter #1 [ $delta ] + Parameter #2 [ $options ] + } + } + + Method [ final public method lookupIn ] { + + - Parameters [1] { + Parameter #0 [ $id ] + } + } + + Method [ final public method retrieveIn ] { + + - Parameters [2] { + Parameter #0 [ $id ] + Parameter #1 [ ...$(paths) ] + } } - Method [ public method insert ] { + Method [ final public method mutateIn ] { + + - Parameters [2] { + Parameter #0 [ $id ] + Parameter #1 [ $cas ] + } } - Method [ public method upsert ] { + Method [ final public method manager ] { + + - Parameters [0] { + } } - Method [ public method replace ] { + Method [ final public method query ] { + + - Parameters [2] { + Parameter #0 [ $query ] + Parameter #1 [ $jsonAsArray ] + } } - Method [ public method append ] { + Method [ final public method mapSize ] { + + - Parameters [1] { + Parameter #0 [ $id ] + } } - Method [ public method prepend ] { + Method [ final public method mapAdd ] { + + - Parameters [3] { + Parameter #0 [ $id ] + Parameter #1 [ $key ] + Parameter #2 [ $value ] + } } - Method [ public method remove ] { + Method [ final public method mapRemove ] { + + - Parameters [2] { + Parameter #0 [ $id ] + Parameter #1 [ $key ] + } } - Method [ public method get ] { + Method [ final public method mapGet ] { + + - Parameters [2] { + Parameter #0 [ $id ] + Parameter #1 [ $key ] + } } - Method [ public method getFromReplica ] { + Method [ final public method setAdd ] { + + - Parameters [2] { + Parameter #0 [ $id ] + Parameter #1 [ $value ] + } } - Method [ public method touch ] { + Method [ final public method setExists ] { + + - Parameters [2] { + Parameter #0 [ $id ] + Parameter #1 [ $value ] + } } - Method [ public method counter ] { + Method [ final public method setRemove ] { + + - Parameters [2] { + Parameter #0 [ $id ] + Parameter #1 [ $value ] + } } - Method [ public method unlock ] { + Method [ final public method listSize ] { + + - Parameters [1] { + Parameter #0 [ $id ] + } } - Method [ public method n1ql_request ] { + Method [ final public method listPush ] { + + - Parameters [2] { + Parameter #0 [ $id ] + Parameter #1 [ $value ] + } } - Method [ public method http_request ] { + Method [ final public method listShift ] { + + - Parameters [2] { + Parameter #0 [ $id ] + Parameter #1 [ $value ] + } } - Method [ public method fts_request ] { + Method [ final public method listRemove ] { + + - Parameters [2] { + Parameter #0 [ $id ] + Parameter #1 [ $index ] + } } - Method [ public method subdoc_request ] { + Method [ final public method listGet ] { + + - Parameters [2] { + Parameter #0 [ $id ] + Parameter #1 [ $index ] + } } - Method [ public method durability ] { + Method [ final public method listSet ] { + + - Parameters [3] { + Parameter #0 [ $id ] + Parameter #1 [ $index ] + Parameter #2 [ $value ] + } } - Method [ public method n1ix_list ] { + Method [ final public method listExists ] { + + - Parameters [2] { + Parameter #0 [ $id ] + Parameter #1 [ $value ] + } } - Method [ public method n1ix_create ] { + Method [ final public method setSize ] { + + - Parameters [1] { + Parameter #0 [ $id ] + } } - Method [ public method n1ix_drop ] { + Method [ final public method queueSize ] { + + - Parameters [1] { + Parameter #0 [ $id ] + } } - Method [ public method setTranscoder ] { + Method [ final public method queueAdd ] { + + - Parameters [2] { + Parameter #0 [ $id ] + Parameter #1 [ $value ] + } } - Method [ public method setOption ] { + Method [ final public method queueExists ] { + + - Parameters [2] { + Parameter #0 [ $id ] + Parameter #1 [ $value ] + } } - Method [ public method getOption ] { + Method [ final public method queueRemove ] { + + - Parameters [1] { + Parameter #0 [ $id ] + } } } } - Class [ class CouchbaseMutationToken ] { + Class [ final class Couchbase\BucketManager ] { - Constants [0] { } @@ -391,14 +862,2008 @@ Extension [ extension #155 couchbase version 2.2.4 ] { - Static methods [0] { } - - Properties [4] { - Property [ public $bucket ] - Property [ public $vbucketID ] - Property [ public $vbucketUUID ] - Property [ public $sequenceNumber ] + - Properties [0] { } - - Methods [0] { + - Methods [14] { + Method [ final private method __construct ] { + + - Parameters [0] { + } + } + + Method [ final public method info ] { + + - Parameters [0] { + } + } + + Method [ final public method flush ] { + + - Parameters [0] { + } + } + + Method [ final public method listDesignDocuments ] { + + - Parameters [0] { + } + } + + Method [ final public method getDesignDocuments ] { + + - Parameters [0] { + } + } + + Method [ final public method getDesignDocument ] { + + - Parameters [1] { + Parameter #0 [ $name ] + } + } + + Method [ final public method removeDesignDocument ] { + + - Parameters [1] { + Parameter #0 [ $name ] + } + } + + Method [ final public method upsertDesignDocument ] { + + - Parameters [2] { + Parameter #0 [ $name ] + Parameter #1 [ $document ] + } + } + + Method [ final public method insertDesignDocument ] { + + - Parameters [2] { + Parameter #0 [ $name ] + Parameter #1 [ $document ] + } + } + + Method [ final public method listN1qlIndexes ] { + + - Parameters [0] { + } + } + + Method [ final public method createN1qlPrimaryIndex ] { + + - Parameters [3] { + Parameter #0 [ $customName ] + Parameter #1 [ $ignoreIfExist ] + Parameter #2 [ $defer ] + } + } + + Method [ final public method createN1qlIndex ] { + + - Parameters [5] { + Parameter #0 [ $indexName ] + Parameter #1 [ $fields ] + Parameter #2 [ $whereClause ] + Parameter #3 [ $ignoreIfExist ] + Parameter #4 [ $defer ] + } + } + + Method [ final public method dropN1qlPrimaryIndex ] { + + - Parameters [3] { + Parameter #0 [ $customName ] + Parameter #1 [ $ignoreIfNotExist ] + Parameter #2 [ $defer ] + } + } + + Method [ final public method dropN1qlIndex ] { + + - Parameters [3] { + Parameter #0 [ $indexName ] + Parameter #1 [ $ignoreIfNotExist ] + Parameter #2 [ $defer ] + } + } + } + } + + Interface [ interface Couchbase\Authenticator ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [0] { + } + } + + Class [ final class Couchbase\ClassicAuthenticator implements Couchbase\Authenticator ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [3] { + Method [ final public method __construct ] { + + - Parameters [0] { + } + } + + Method [ final public method cluster ] { + + - Parameters [2] { + Parameter #0 [ $username ] + Parameter #1 [ $password ] + } + } + + Method [ final public method bucket ] { + + - Parameters [2] { + Parameter #0 [ $name ] + Parameter #1 [ $password ] + } + } + } + } + + Class [ final class Couchbase\MutationToken ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [1] { + Method [ final static public method from ] { + + - Parameters [4] { + Parameter #0 [ $bucketName ] + Parameter #1 [ $vbucketId ] + Parameter #2 [ $vbucketUuid ] + Parameter #3 [ $sequenceNumber ] + } + } + } + + - Properties [0] { + } + + - Methods [5] { + Method [ final private method __construct ] { + + - Parameters [0] { + } + } + + Method [ final public method bucketName ] { + + - Parameters [0] { + } + } + + Method [ final public method vbucketId ] { + + - Parameters [0] { + } + } + + Method [ final public method vbucketUuid ] { + + - Parameters [0] { + } + } + + Method [ final public method sequenceNumber ] { + + - Parameters [0] { + } + } + } + } + + Class [ final class Couchbase\MutationState ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [1] { + Method [ final static public method from ] { + + - Parameters [1] { + Parameter #0 [ $source ] + } + } + } + + - Properties [0] { + } + + - Methods [2] { + Method [ final private method __construct ] { + + - Parameters [0] { + } + } + + Method [ final public method add ] { + + - Parameters [1] { + Parameter #0 [ $source ] + } + } + } + } + + Interface [ interface Couchbase\ViewQueryEncodable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [1] { + Method [ abstract public method encode ] { + + - Parameters [0] { + } + } + } + } + + Class [ final class Couchbase\ViewQuery implements Couchbase\ViewQueryEncodable ] { + + - Constants [5] { + Constant [ integer UPDATE_BEFORE ] { 1 } + Constant [ integer UPDATE_NONE ] { 2 } + Constant [ integer UPDATE_AFTER ] { 3 } + Constant [ integer ORDER_ASCENDING ] { 1 } + Constant [ integer ORDER_DESCENDING ] { 2 } + } + + - Static properties [0] { + } + + - Static methods [2] { + Method [ final static public method from ] { + + - Parameters [2] { + Parameter #0 [ $designDocumentName ] + Parameter #1 [ $viewName ] + } + } + + Method [ final static public method fromSpatial ] { + + - Parameters [2] { + Parameter #0 [ $designDocumentName ] + Parameter #1 [ $viewName ] + } + } + } + + - Properties [0] { + } + + - Methods [17] { + Method [ final private method __construct ] { + + - Parameters [0] { + } + } + + Method [ final public method encode ] { + + - Parameters [0] { + } + } + + Method [ final public method limit ] { + + - Parameters [1] { + Parameter #0 [ $limit ] + } + } + + Method [ final public method skip ] { + + - Parameters [1] { + Parameter #0 [ $skip ] + } + } + + Method [ final public method consistency ] { + + - Parameters [1] { + Parameter #0 [ $consistency ] + } + } + + Method [ final public method stale ] { + + - Parameters [1] { + Parameter #0 [ $consistency ] + } + } + + Method [ final public method custom ] { + + - Parameters [1] { + Parameter #0 [ $options ] + } + } + + Method [ final public method order ] { + + - Parameters [1] { + Parameter #0 [ $order ] + } + } + + Method [ final public method reduce ] { + + - Parameters [1] { + Parameter #0 [ $reduce ] + } + } + + Method [ final public method group ] { + + - Parameters [1] { + Parameter #0 [ $group ] + } + } + + Method [ final public method groupLevel ] { + + - Parameters [1] { + Parameter #0 [ $group_level ] + } + } + + Method [ final public method group_level ] { + + - Parameters [1] { + Parameter #0 [ $group_level ] + } + } + + Method [ final public method key ] { + + - Parameters [1] { + Parameter #0 [ $key ] + } + } + + Method [ final public method keys ] { + + - Parameters [1] { + Parameter #0 [ $keys ] + } + } + + Method [ final public method range ] { + + - Parameters [3] { + Parameter #0 [ $startKey ] + Parameter #1 [ $endKey ] + Parameter #2 [ $inclusiveEnd ] + } + } + + Method [ final public method idRange ] { + + - Parameters [2] { + Parameter #0 [ $startKeyDocumentId ] + Parameter #1 [ $endKeyDocumentId ] + } + } + + Method [ final public method id_range ] { + + - Parameters [2] { + Parameter #0 [ $startKeyDocumentId ] + Parameter #1 [ $endKeyDocumentId ] + } + } + } + } + + Class [ final class Couchbase\SpatialViewQuery implements Couchbase\ViewQueryEncodable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [1] { + Method [ final static public method from ] { + + - Parameters [2] { + Parameter #0 [ $designDocumentName ] + Parameter #1 [ $viewName ] + } + } + } + + - Properties [0] { + } + + - Methods [10] { + Method [ final private method __construct ] { + + - Parameters [0] { + } + } + + Method [ final public method encode ] { + + - Parameters [0] { + } + } + + Method [ final public method limit ] { + + - Parameters [1] { + Parameter #0 [ $limit ] + } + } + + Method [ final public method skip ] { + + - Parameters [1] { + Parameter #0 [ $skip ] + } + } + + Method [ final public method consistency ] { + + - Parameters [1] { + Parameter #0 [ $consistency ] + } + } + + Method [ final public method stale ] { + + - Parameters [1] { + Parameter #0 [ $consistency ] + } + } + + Method [ final public method bbox ] { + + - Parameters [1] { + Parameter #0 [ $bbox ] + } + } + + Method [ final public method startRange ] { + + - Parameters [1] { + Parameter #0 [ $range ] + } + } + + Method [ final public method endRange ] { + + - Parameters [1] { + Parameter #0 [ $range ] + } + } + + Method [ final public method custom ] { + + - Parameters [1] { + Parameter #0 [ $options ] + } + } + } + } + + Class [ final class Couchbase\N1qlQuery ] { + + - Constants [3] { + Constant [ integer NOT_BOUNDED ] { 1 } + Constant [ integer REQUEST_PLUS ] { 2 } + Constant [ integer STATEMENT_PLUS ] { 3 } + } + + - Static properties [0] { + } + + - Static methods [1] { + Method [ final static public method fromString ] { + + - Parameters [1] { + Parameter #0 [ $statement ] + } + } + } + + - Properties [1] { + Property [ public $options ] + } + + - Methods [7] { + Method [ final private method __construct ] { + + - Parameters [0] { + } + } + + Method [ final public method adhoc ] { + + - Parameters [1] { + Parameter #0 [ $adhoc ] + } + } + + Method [ final public method crossBucket ] { + + - Parameters [1] { + Parameter #0 [ $crossBucket ] + } + } + + Method [ final public method positionalParams ] { + + - Parameters [1] { + Parameter #0 [ $params ] + } + } + + Method [ final public method namedParams ] { + + - Parameters [1] { + Parameter #0 [ $params ] + } + } + + Method [ final public method consistency ] { + + - Parameters [1] { + Parameter #0 [ $consistency ] + } + } + + Method [ final public method consistentWith ] { + + - Parameters [1] { + Parameter #0 [ $mutationState ] + } + } + } + } + + Class [ class Couchbase\N1qlIndex ] { + + - Constants [3] { + Constant [ integer VIEW ] { 2 } + Constant [ integer GSI ] { 1 } + Constant [ integer UNSPECIFIED ] { 0 } + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [8] { + Property [ public $name ] + Property [ public $isPrimary ] + Property [ public $type ] + Property [ public $state ] + Property [ public $keyspace ] + Property [ public $namespace ] + Property [ public $fields ] + Property [ public $condition ] + } + + - Methods [1] { + Method [ final private method __construct ] { + + - Parameters [0] { + } + } + } + } + + Class [ final class Couchbase\LookupInBuilder ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [4] { + Method [ final private method __construct ] { + + - Parameters [0] { + } + } + + Method [ final public method get ] { + + - Parameters [1] { + Parameter #0 [ $path ] + } + } + + Method [ final public method exists ] { + + - Parameters [1] { + Parameter #0 [ $path ] + } + } + + Method [ final public method execute ] { + + - Parameters [0] { + } + } + } + } + + Class [ final class Couchbase\MutateInBuilder ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [14] { + Method [ final private method __construct ] { + + - Parameters [0] { + } + } + + Method [ final public method insert ] { + + - Parameters [3] { + Parameter #0 [ $path ] + Parameter #1 [ $value ] + Parameter #2 [ $createParents ] + } + } + + Method [ final public method upsert ] { + + - Parameters [3] { + Parameter #0 [ $path ] + Parameter #1 [ $value ] + Parameter #2 [ $createParents ] + } + } + + Method [ final public method replace ] { + + - Parameters [2] { + Parameter #0 [ $path ] + Parameter #1 [ $value ] + } + } + + Method [ final public method remove ] { + + - Parameters [1] { + Parameter #0 [ $path ] + } + } + + Method [ final public method arrayPrepend ] { + + - Parameters [3] { + Parameter #0 [ $path ] + Parameter #1 [ $value ] + Parameter #2 [ $createParents ] + } + } + + Method [ final public method arrayAppend ] { + + - Parameters [3] { + Parameter #0 [ $path ] + Parameter #1 [ $value ] + Parameter #2 [ $createParents ] + } + } + + Method [ final public method arrayInsert ] { + + - Parameters [2] { + Parameter #0 [ $path ] + Parameter #1 [ $value ] + } + } + + Method [ final public method arrayPrependAll ] { + + - Parameters [3] { + Parameter #0 [ $path ] + Parameter #1 [ $values ] + Parameter #2 [ $createParents ] + } + } + + Method [ final public method arrayAppendAll ] { + + - Parameters [3] { + Parameter #0 [ $path ] + Parameter #1 [ $values ] + Parameter #2 [ $createParents ] + } + } + + Method [ final public method arrayInsertAll ] { + + - Parameters [2] { + Parameter #0 [ $path ] + Parameter #1 [ $values ] + } + } + + Method [ final public method arrayAddUnique ] { + + - Parameters [3] { + Parameter #0 [ $path ] + Parameter #1 [ $value ] + Parameter #2 [ $createParents ] + } + } + + Method [ final public method counter ] { + + - Parameters [3] { + Parameter #0 [ $path ] + Parameter #1 [ $delta ] + Parameter #2 [ $createParents ] + } + } + + Method [ final public method execute ] { + + - Parameters [0] { + } + } + } + } + + Class [ final class Couchbase\SearchQuery implements JsonSerializable ] { + + - Constants [3] { + Constant [ string HIGHLIGHT_HTML ] { html } + Constant [ string HIGHLIGHT_ANSI ] { ansi } + Constant [ string HIGHLIGHT_SIMPLE ] { simple } + } + + - Static properties [0] { + } + + - Static methods [20] { + Method [ final static public method booleanField ] { + + - Parameters [1] { + Parameter #0 [ $value ] + } + } + + Method [ final static public method boolean ] { + + - Parameters [0] { + } + } + + Method [ final static public method conjuncts ] { + + - Parameters [1] { + Parameter #0 [ ...$(queries) ] + } + } + + Method [ final static public method dateRange ] { + + - Parameters [0] { + } + } + + Method [ final static public method disjuncts ] { + + - Parameters [1] { + Parameter #0 [ ...$(queries) ] + } + } + + Method [ final static public method docId ] { + + - Parameters [1] { + Parameter #0 [ ...$(documentIds) ] + } + } + + Method [ final static public method match ] { + + - Parameters [1] { + Parameter #0 [ $match ] + } + } + + Method [ final static public method matchAll ] { + + - Parameters [0] { + } + } + + Method [ final static public method matchNone ] { + + - Parameters [0] { + } + } + + Method [ final static public method matchPhrase ] { + + - Parameters [1] { + Parameter #0 [ $matchPhrase ] + } + } + + Method [ final static public method numericRange ] { + + - Parameters [0] { + } + } + + Method [ final static public method phrase ] { + + - Parameters [1] { + Parameter #0 [ ...$(terms) ] + } + } + + Method [ final static public method prefix ] { + + - Parameters [1] { + Parameter #0 [ $prefix ] + } + } + + Method [ final static public method queryString ] { + + - Parameters [1] { + Parameter #0 [ $queryString ] + } + } + + Method [ final static public method regexp ] { + + - Parameters [1] { + Parameter #0 [ $regexp ] + } + } + + Method [ final static public method term ] { + + - Parameters [1] { + Parameter #0 [ $term ] + } + } + + Method [ final static public method wildcard ] { + + - Parameters [1] { + Parameter #0 [ $wildcard ] + } + } + + Method [ final static public method termFacet ] { + + - Parameters [2] { + Parameter #0 [ $field ] + Parameter #1 [ $limit ] + } + } + + Method [ final static public method dateRangeFacet ] { + + - Parameters [2] { + Parameter #0 [ $field ] + Parameter #1 [ $limit ] + } + } + + Method [ final static public method numericRangeFacet ] { + + - Parameters [2] { + Parameter #0 [ $field ] + Parameter #1 [ $limit ] + } + } + } + + - Properties [0] { + } + + - Methods [10] { + Method [ final public method __construct ] { + + - Parameters [2] { + Parameter #0 [ $indexName ] + Parameter #1 [ $queryPart ] + } + } + + Method [ final public method jsonSerialize ] { + + - Parameters [0] { + } + } + + Method [ final public method limit ] { + + - Parameters [1] { + Parameter #0 [ $limit ] + } + } + + Method [ final public method skip ] { + + - Parameters [1] { + Parameter #0 [ $skip ] + } + } + + Method [ final public method explain ] { + + - Parameters [1] { + Parameter #0 [ $explain ] + } + } + + Method [ final public method serverSideTimeout ] { + + - Parameters [1] { + Parameter #0 [ $serverSideTimeout ] + } + } + + Method [ final public method consistentWith ] { + + - Parameters [1] { + Parameter #0 [ $mutationState ] + } + } + + Method [ final public method fields ] { + + - Parameters [1] { + Parameter #0 [ ...$(fields) ] + } + } + + Method [ final public method highlight ] { + + - Parameters [2] { + Parameter #0 [ $style ] + Parameter #1 [ ...$(fields) ] + } + } + + Method [ final public method addFacet ] { + + - Parameters [2] { + Parameter #0 [ $name ] + Parameter #1 [ $facet ] + } + } + } + } + + Interface [ interface Couchbase\SearchQueryPart ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [0] { + } + } + + Class [ final class Couchbase\BooleanFieldSearchQuery implements JsonSerializable, Couchbase\SearchQueryPart ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [4] { + Method [ final private method __construct ] { + + - Parameters [0] { + } + } + + Method [ final public method jsonSerialize ] { + + - Parameters [0] { + } + } + + Method [ final public method boost ] { + + - Parameters [1] { + Parameter #0 [ $boost ] + } + } + + Method [ final public method field ] { + + - Parameters [1] { + Parameter #0 [ $field ] + } + } + } + } + + Class [ final class Couchbase\BooleanSearchQuery implements JsonSerializable, Couchbase\SearchQueryPart ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [6] { + Method [ final private method __construct ] { + + - Parameters [0] { + } + } + + Method [ final public method jsonSerialize ] { + + - Parameters [0] { + } + } + + Method [ final public method boost ] { + + - Parameters [1] { + Parameter #0 [ $boost ] + } + } + + Method [ final public method must ] { + + - Parameters [1] { + Parameter #0 [ ...$(queries) ] + } + } + + Method [ final public method mustNot ] { + + - Parameters [1] { + Parameter #0 [ ...$(queries) ] + } + } + + Method [ final public method should ] { + + - Parameters [1] { + Parameter #0 [ ...$(queries) ] + } + } + } + } + + Class [ final class Couchbase\ConjunctionSearchQuery implements JsonSerializable, Couchbase\SearchQueryPart ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [4] { + Method [ final private method __construct ] { + + - Parameters [0] { + } + } + + Method [ final public method jsonSerialize ] { + + - Parameters [0] { + } + } + + Method [ final public method boost ] { + + - Parameters [1] { + Parameter #0 [ $boost ] + } + } + + Method [ final public method every ] { + + - Parameters [1] { + Parameter #0 [ ...$(queries) ] + } + } + } + } + + Class [ final class Couchbase\DateRangeSearchQuery implements JsonSerializable, Couchbase\SearchQueryPart ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [7] { + Method [ final private method __construct ] { + + - Parameters [0] { + } + } + + Method [ final public method jsonSerialize ] { + + - Parameters [0] { + } + } + + Method [ final public method boost ] { + + - Parameters [1] { + Parameter #0 [ $boost ] + } + } + + Method [ final public method field ] { + + - Parameters [1] { + Parameter #0 [ $field ] + } + } + + Method [ final public method start ] { + + - Parameters [2] { + Parameter #0 [ $start ] + Parameter #1 [ $inclusive ] + } + } + + Method [ final public method end ] { + + - Parameters [2] { + Parameter #0 [ $end ] + Parameter #1 [ $inclusive ] + } + } + + Method [ final public method dateTimeParser ] { + + - Parameters [1] { + Parameter #0 [ $dateTimeParser ] + } + } + } + } + + Class [ final class Couchbase\DisjunctionSearchQuery implements JsonSerializable, Couchbase\SearchQueryPart ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [5] { + Method [ final private method __construct ] { + + - Parameters [0] { + } + } + + Method [ final public method jsonSerialize ] { + + - Parameters [0] { + } + } + + Method [ final public method boost ] { + + - Parameters [1] { + Parameter #0 [ $boost ] + } + } + + Method [ final public method either ] { + + - Parameters [1] { + Parameter #0 [ ...$(queries) ] + } + } + + Method [ final public method min ] { + + - Parameters [1] { + Parameter #0 [ $min ] + } + } + } + } + + Class [ final class Couchbase\DocIdSearchQuery implements JsonSerializable, Couchbase\SearchQueryPart ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [5] { + Method [ final private method __construct ] { + + - Parameters [0] { + } + } + + Method [ final public method jsonSerialize ] { + + - Parameters [0] { + } + } + + Method [ final public method boost ] { + + - Parameters [1] { + Parameter #0 [ $boost ] + } + } + + Method [ final public method field ] { + + - Parameters [1] { + Parameter #0 [ $field ] + } + } + + Method [ final public method docIds ] { + + - Parameters [1] { + Parameter #0 [ ...$(documentIds) ] + } + } + } + } + + Class [ final class Couchbase\MatchAllSearchQuery implements JsonSerializable, Couchbase\SearchQueryPart ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [3] { + Method [ final private method __construct ] { + + - Parameters [0] { + } + } + + Method [ final public method jsonSerialize ] { + + - Parameters [0] { + } + } + + Method [ final public method boost ] { + + - Parameters [1] { + Parameter #0 [ $boost ] + } + } + } + } + + Class [ final class Couchbase\MatchNoneSearchQuery implements JsonSerializable, Couchbase\SearchQueryPart ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [3] { + Method [ final private method __construct ] { + + - Parameters [0] { + } + } + + Method [ final public method jsonSerialize ] { + + - Parameters [0] { + } + } + + Method [ final public method boost ] { + + - Parameters [1] { + Parameter #0 [ $boost ] + } + } + } + } + + Class [ final class Couchbase\MatchPhraseSearchQuery implements JsonSerializable, Couchbase\SearchQueryPart ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [5] { + Method [ final private method __construct ] { + + - Parameters [0] { + } + } + + Method [ final public method jsonSerialize ] { + + - Parameters [0] { + } + } + + Method [ final public method boost ] { + + - Parameters [1] { + Parameter #0 [ $boost ] + } + } + + Method [ final public method field ] { + + - Parameters [1] { + Parameter #0 [ $field ] + } + } + + Method [ final public method analyzer ] { + + - Parameters [1] { + Parameter #0 [ $analyzer ] + } + } + } + } + + Class [ final class Couchbase\MatchSearchQuery implements JsonSerializable, Couchbase\SearchQueryPart ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [7] { + Method [ final private method __construct ] { + + - Parameters [0] { + } + } + + Method [ final public method jsonSerialize ] { + + - Parameters [0] { + } + } + + Method [ final public method boost ] { + + - Parameters [1] { + Parameter #0 [ $boost ] + } + } + + Method [ final public method field ] { + + - Parameters [1] { + Parameter #0 [ $field ] + } + } + + Method [ final public method analyzer ] { + + - Parameters [1] { + Parameter #0 [ $analyzer ] + } + } + + Method [ final public method prefixLength ] { + + - Parameters [1] { + Parameter #0 [ $prefixLength ] + } + } + + Method [ final public method fuzziness ] { + + - Parameters [1] { + Parameter #0 [ $fuzziness ] + } + } + } + } + + Class [ final class Couchbase\NumericRangeSearchQuery implements JsonSerializable, Couchbase\SearchQueryPart ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [6] { + Method [ final private method __construct ] { + + - Parameters [0] { + } + } + + Method [ final public method jsonSerialize ] { + + - Parameters [0] { + } + } + + Method [ final public method boost ] { + + - Parameters [1] { + Parameter #0 [ $boost ] + } + } + + Method [ final public method field ] { + + - Parameters [1] { + Parameter #0 [ $field ] + } + } + + Method [ final public method min ] { + + - Parameters [2] { + Parameter #0 [ $min ] + Parameter #1 [ $inclusive ] + } + } + + Method [ final public method max ] { + + - Parameters [2] { + Parameter #0 [ $max ] + Parameter #1 [ $inclusive ] + } + } + } + } + + Class [ final class Couchbase\PhraseSearchQuery implements JsonSerializable, Couchbase\SearchQueryPart ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [4] { + Method [ final private method __construct ] { + + - Parameters [0] { + } + } + + Method [ final public method jsonSerialize ] { + + - Parameters [0] { + } + } + + Method [ final public method boost ] { + + - Parameters [1] { + Parameter #0 [ $boost ] + } + } + + Method [ final public method field ] { + + - Parameters [1] { + Parameter #0 [ $field ] + } + } + } + } + + Class [ final class Couchbase\PrefixSearchQuery implements JsonSerializable, Couchbase\SearchQueryPart ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [4] { + Method [ final private method __construct ] { + + - Parameters [0] { + } + } + + Method [ final public method jsonSerialize ] { + + - Parameters [0] { + } + } + + Method [ final public method boost ] { + + - Parameters [1] { + Parameter #0 [ $boost ] + } + } + + Method [ final public method field ] { + + - Parameters [1] { + Parameter #0 [ $field ] + } + } + } + } + + Class [ final class Couchbase\QueryStringSearchQuery implements JsonSerializable, Couchbase\SearchQueryPart ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [3] { + Method [ final private method __construct ] { + + - Parameters [0] { + } + } + + Method [ final public method jsonSerialize ] { + + - Parameters [0] { + } + } + + Method [ final public method boost ] { + + - Parameters [1] { + Parameter #0 [ $boost ] + } + } + } + } + + Class [ final class Couchbase\RegexpSearchQuery implements JsonSerializable, Couchbase\SearchQueryPart ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [4] { + Method [ final private method __construct ] { + + - Parameters [0] { + } + } + + Method [ final public method jsonSerialize ] { + + - Parameters [0] { + } + } + + Method [ final public method boost ] { + + - Parameters [1] { + Parameter #0 [ $boost ] + } + } + + Method [ final public method field ] { + + - Parameters [1] { + Parameter #0 [ $field ] + } + } + } + } + + Class [ final class Couchbase\TermSearchQuery implements JsonSerializable, Couchbase\SearchQueryPart ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [6] { + Method [ final private method __construct ] { + + - Parameters [0] { + } + } + + Method [ final public method jsonSerialize ] { + + - Parameters [0] { + } + } + + Method [ final public method boost ] { + + - Parameters [1] { + Parameter #0 [ $boost ] + } + } + + Method [ final public method field ] { + + - Parameters [1] { + Parameter #0 [ $field ] + } + } + + Method [ final public method prefixLength ] { + + - Parameters [1] { + Parameter #0 [ $prefixLength ] + } + } + + Method [ final public method fuzziness ] { + + - Parameters [1] { + Parameter #0 [ $fuzziness ] + } + } + } + } + + Class [ final class Couchbase\WildcardSearchQuery implements JsonSerializable, Couchbase\SearchQueryPart ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [4] { + Method [ final private method __construct ] { + + - Parameters [0] { + } + } + + Method [ final public method jsonSerialize ] { + + - Parameters [0] { + } + } + + Method [ final public method boost ] { + + - Parameters [1] { + Parameter #0 [ $boost ] + } + } + + Method [ final public method field ] { + + - Parameters [1] { + Parameter #0 [ $field ] + } + } + } + } + + Interface [ interface Couchbase\SearchFacet ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [0] { + } + } + + Class [ final class Couchbase\TermSearchFacet implements JsonSerializable, Couchbase\SearchFacet ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [2] { + Method [ final private method __construct ] { + + - Parameters [0] { + } + } + + Method [ final public method jsonSerialize ] { + + - Parameters [0] { + } + } + } + } + + Class [ final class Couchbase\NumericRangeSearchFacet implements JsonSerializable, Couchbase\SearchFacet ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [3] { + Method [ final private method __construct ] { + + - Parameters [0] { + } + } + + Method [ final public method jsonSerialize ] { + + - Parameters [0] { + } + } + + Method [ final public method addRange ] { + + - Parameters [3] { + Parameter #0 [ $name ] + Parameter #1 [ $min ] + Parameter #2 [ $max ] + } + } + } + } + + Class [ final class Couchbase\DateRangeSearchFacet implements JsonSerializable, Couchbase\SearchFacet ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [3] { + Method [ final private method __construct ] { + + - Parameters [0] { + } + } + + Method [ final public method jsonSerialize ] { + + - Parameters [0] { + } + } + + Method [ final public method addRange ] { + + - Parameters [3] { + Parameter #0 [ $name ] + Parameter #1 [ $start ] + Parameter #2 [ $end ] + } + } } } } -- cgit