Skip to content

Commit

Permalink
Fix links to mongodb manual
Browse files Browse the repository at this point in the history
  • Loading branch information
idetox committed Oct 28, 2020
1 parent 6bf710b commit 963e0fc
Show file tree
Hide file tree
Showing 11 changed files with 351 additions and 351 deletions.
32 changes: 16 additions & 16 deletions lib/Doctrine/ODM/MongoDB/Aggregation/Builder.php
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ public function bucketAuto() : Stage\BucketAuto
* $collStats must be the first stage in an aggregation pipeline, or else
* the pipeline returns an error.
*
* @see http://docs.mongodb.org/manual/reference/operator/aggregation/collStats/
* @see https://docs.mongodb.com/manual/reference/operator/aggregation/collStats/
*/
public function collStats() : Stage\CollStats
{
Expand Down Expand Up @@ -207,7 +207,7 @@ public function facet() : Stage\Facet
*
* You can only use this as the first stage of a pipeline.
*
* @see http://docs.mongodb.org/manual/reference/operator/aggregation/geoNear/
* @see https://docs.mongodb.com/manual/reference/operator/aggregation/geoNear/
*
* @param float|array|Point $x
* @param float $y
Expand Down Expand Up @@ -308,7 +308,7 @@ public function getStage(int $index) : Stage
* Performs a recursive search on a collection, with options for restricting
* the search by recursion depth and query filter.
*
* @see https://docs.mongodb.org/manual/reference/operator/aggregation/graphLookup/
* @see https://docs.mongodb.com/manual/reference/operator/aggregation/graphLookup/
*
* @param string $from Target collection for the $graphLookup operation to
* search, recursively matching the connectFromField to the connectToField.
Expand All @@ -325,7 +325,7 @@ public function graphLookup(string $from) : Stage\GraphLookup
* Groups documents by some specified expression and outputs to the next
* stage a document for each distinct grouping.
*
* @see http://docs.mongodb.org/manual/reference/operator/aggregation/group/
* @see https://docs.mongodb.com/manual/reference/operator/aggregation/group/
*/
public function group() : Stage\Group
{
Expand All @@ -348,7 +348,7 @@ public function hydrate(string $className) : self
/**
* Returns statistics regarding the use of each index for the collection.
*
* @see https://docs.mongodb.org/manual/reference/operator/aggregation/indexStats/
* @see https://docs.mongodb.com/manual/reference/operator/aggregation/indexStats/
*/
public function indexStats() : Stage\IndexStats
{
Expand All @@ -361,7 +361,7 @@ public function indexStats() : Stage\IndexStats
/**
* Limits the number of documents passed to the next stage in the pipeline.
*
* @see http://docs.mongodb.org/manual/reference/operator/aggregation/limit/
* @see https://docs.mongodb.com/manual/reference/operator/aggregation/limit/
*/
public function limit(int $limit) : Stage\Limit
{
Expand All @@ -376,7 +376,7 @@ public function limit(int $limit) : Stage\Limit
* database to filter in documents from the “joined” collection for
* processing.
*
* @see https://docs.mongodb.org/manual/reference/operator/aggregation/lookup/
* @see https://docs.mongodb.com/manual/reference/operator/aggregation/lookup/
*/
public function lookup(string $from) : Stage\Lookup
{
Expand All @@ -390,7 +390,7 @@ public function lookup(string $from) : Stage\Lookup
* Filters the documents to pass only the documents that match the specified
* condition(s) to the next pipeline stage.
*
* @see http://docs.mongodb.org/manual/reference/operator/aggregation/match/
* @see https://docs.mongodb.com/manual/reference/operator/aggregation/match/
*/
public function match() : Stage\Match
{
Expand All @@ -415,7 +415,7 @@ public function matchExpr() : QueryExpr
* Takes the documents returned by the aggregation pipeline and writes them
* to a specified collection. This must be the last stage in the pipeline.
*
* @see http://docs.mongodb.org/manual/reference/operator/aggregation/out/
* @see https://docs.mongodb.com/manual/reference/operator/aggregation/out/
*/
public function out(string $from) : Stage\Out
{
Expand All @@ -430,7 +430,7 @@ public function out(string $from) : Stage\Out
* stage in the pipeline. The specified fields can be existing fields from
* the input documents or newly computed fields.
*
* @see http://docs.mongodb.org/manual/reference/operator/aggregation/project/
* @see https://docs.mongodb.com/manual/reference/operator/aggregation/project/
*/
public function project() : Stage\Project
{
Expand All @@ -444,7 +444,7 @@ public function project() : Stage\Project
* Restricts the contents of the documents based on information stored in
* the documents themselves.
*
* @see http://docs.mongodb.org/manual/reference/operator/aggregation/redact/
* @see https://docs.mongodb.com/manual/reference/operator/aggregation/redact/
*/
public function redact() : Stage\Redact
{
Expand Down Expand Up @@ -486,7 +486,7 @@ public function rewindable(bool $rewindable = true) : self
/**
* Randomly selects the specified number of documents from its input.
*
* @see https://docs.mongodb.org/manual/reference/operator/aggregation/sample/
* @see https://docs.mongodb.com/manual/reference/operator/aggregation/sample/
*/
public function sample(int $size) : Stage\Sample
{
Expand All @@ -500,7 +500,7 @@ public function sample(int $size) : Stage\Sample
* Skips over the specified number of documents that pass into the stage and
* passes the remaining documents to the next stage in the pipeline.
*
* @see http://docs.mongodb.org/manual/reference/operator/aggregation/skip/
* @see https://docs.mongodb.com/manual/reference/operator/aggregation/skip/
*/
public function skip(int $skip) : Stage\Skip
{
Expand All @@ -517,7 +517,7 @@ public function skip(int $skip) : Stage\Skip
* If sorting by multiple fields, the first argument should be an array of
* field name (key) and order (value) pairs.
*
* @see http://docs.mongodb.org/manual/reference/operator/aggregation/sort/
* @see https://docs.mongodb.com/manual/reference/operator/aggregation/sort/
*
* @param array|string $fieldName Field name or array of field/order pairs
* @param int|string $order Field order (if one field is specified)
Expand All @@ -536,7 +536,7 @@ public function sort($fieldName, $order = null) : Stage\Sort
* Groups incoming documents based on the value of a specified expression,
* then computes the count of documents in each distinct group.
*
* @see http://docs.mongodb.org/manual/reference/operator/aggregation/sortByCount/
* @see https://docs.mongodb.com/manual/reference/operator/aggregation/sortByCount/
*/
public function sortByCount(string $expression) : Stage\SortByCount
{
Expand All @@ -551,7 +551,7 @@ public function sortByCount(string $expression) : Stage\SortByCount
* for each element. Each output document is the input document with the
* value of the array field replaced by the element.
*
* @see http://docs.mongodb.org/manual/reference/operator/aggregation/unwind/
* @see https://docs.mongodb.com/manual/reference/operator/aggregation/unwind/
*/
public function unwind(string $fieldName) : Stage\Unwind
{
Expand Down
Loading

0 comments on commit 963e0fc

Please sign in to comment.