1 | <?php |
||
31 | class BucketAutoOutput extends AbstractOutput |
||
32 | { |
||
33 | /** |
||
34 | * @param Builder $builder |
||
35 | * @param Stage\BucketAuto $bucket |
||
36 | */ |
||
37 | 3 | public function __construct(Builder $builder, Stage\BucketAuto $bucket) |
|
41 | |||
42 | /** |
||
43 | * An expression to group documents by. To specify a field path, prefix the |
||
44 | * field name with a dollar sign $ and enclose it in quotes. |
||
45 | * |
||
46 | * @return Stage\BucketAuto |
||
47 | */ |
||
48 | public function groupBy($expression) |
||
52 | |||
53 | /** |
||
54 | * A positive 32-bit integer that specifies the number of buckets into which input documents are grouped. |
||
55 | * |
||
56 | * @param int $buckets |
||
57 | * |
||
58 | * @return Stage\BucketAuto |
||
59 | */ |
||
60 | public function buckets($buckets) |
||
64 | |||
65 | /** |
||
66 | * A string that specifies the preferred number series to use to ensure that |
||
67 | * the calculated boundary edges end on preferred round numbers or their |
||
68 | * powers of 10. |
||
69 | * |
||
70 | * @param string $granularity |
||
71 | * |
||
72 | * @return Stage\BucketAuto |
||
73 | */ |
||
74 | public function granularity($granularity) |
||
78 | } |
||
79 |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.