|
36 | 36 | * bytes. For example, the original document consists of 100 bytes. In this case factor 1.0 will require compressor
|
37 | 37 | * to yield values not larger than 100 bytes (100/1.0), and 1.5 -- not larger than 66 bytes (100/1.5).
|
38 | 38 | *
|
39 |
| - * * `couchbase.decoder.json_arrays` (boolean), default: `false` |
| 39 | + * * `couchbase.decoder.json_arrays` (boolean), default: `true` |
40 | 40 | *
|
41 | 41 | * controls the form of the documents, returned by the server if they were in JSON format. When true, it will generate
|
42 | 42 | * arrays of arrays, otherwise instances of stdClass.
|
@@ -257,9 +257,7 @@ public function content(): ?array;
|
257 | 257 | *
|
258 | 258 | * @return DateTimeInterface|null
|
259 | 259 | */
|
260 |
| - public function expiryTime(): ?DateTimeInterface |
261 |
| - { |
262 |
| - } |
| 260 | + public function expiryTime(): ?DateTimeInterface; |
263 | 261 | }
|
264 | 262 |
|
265 | 263 | /**
|
@@ -357,9 +355,7 @@ public function status(int $index): int;
|
357 | 355 | *
|
358 | 356 | * @return DateTimeInterface|null
|
359 | 357 | */
|
360 |
| - public function expiryTime(): ?DateTimeInterface |
361 |
| - { |
362 |
| - } |
| 358 | + public function expiryTime(): ?DateTimeInterface; |
363 | 359 | }
|
364 | 360 |
|
365 | 361 | /**
|
@@ -2689,7 +2685,6 @@ class DocIdSearchQuery implements JsonSerializable, SearchQuery
|
2689 | 2685 | {
|
2690 | 2686 | public function jsonSerialize() {}
|
2691 | 2687 |
|
2692 |
| - /** @ignore */ |
2693 | 2688 | public function __construct()
|
2694 | 2689 | {
|
2695 | 2690 | }
|
@@ -2779,6 +2774,8 @@ public function field(string $field): GeoDistanceSearchQuery
|
2779 | 2774 |
|
2780 | 2775 | class Coordinate implements JsonSerializable
|
2781 | 2776 | {
|
| 2777 | + public function jsonSerialize() {} |
| 2778 | + |
2782 | 2779 | /**
|
2783 | 2780 | * @param float $longitude
|
2784 | 2781 | * @param float $latitude
|
|
0 commit comments