@@ -2569,7 +2569,7 @@ |
||
| 2569 | 2569 | * @param array $data The data for the document. |
| 2570 | 2570 | * @param array $hints Any hints to account for during reconstitution/lookup of the document. |
| 2571 | 2571 | * @param object $document The document to be hydrated into in case of creation |
| 2572 | - * @return object The document instance. |
|
| 2572 | + * @return callable|null The document instance. |
|
| 2573 | 2573 | * @internal Highly performance-sensitive method. |
| 2574 | 2574 | */ |
| 2575 | 2575 | public function getOrCreateDocument($className, $data, &$hints = [], $document = null) |
@@ -106,7 +106,7 @@ discard block |
||
| 106 | 106 | /** |
| 107 | 107 | * Construct a Builder |
| 108 | 108 | * |
| 109 | - * @param string[]|string|null $documentName (optional) an array of document names, the document name, or none |
|
| 109 | + * @param string|null $documentName (optional) an array of document names, the document name, or none |
|
| 110 | 110 | */ |
| 111 | 111 | public function __construct(DocumentManager $dm, $documentName = null) |
| 112 | 112 | { |
@@ -1091,7 +1091,7 @@ discard block |
||
| 1091 | 1091 | * @see Expr::mod() |
| 1092 | 1092 | * @see http://docs.mongodb.org/manual/reference/operator/mod/ |
| 1093 | 1093 | * @param float|int $divisor |
| 1094 | - * @param float|int $remainder |
|
| 1094 | + * @param integer $remainder |
|
| 1095 | 1095 | * @return $this |
| 1096 | 1096 | */ |
| 1097 | 1097 | public function mod($divisor, $remainder = 0) |
@@ -1255,7 +1255,7 @@ discard block |
||
| 1255 | 1255 | * If a custom callable is used, its signature should conform to the default |
| 1256 | 1256 | * Closure defined in {@link ReferencePrimer::__construct()}. |
| 1257 | 1257 | * |
| 1258 | - * @param bool|callable $primer |
|
| 1258 | + * @param boolean $primer |
|
| 1259 | 1259 | * @return $this |
| 1260 | 1260 | * @throws \InvalidArgumentException If $primer is not boolean or callable. |
| 1261 | 1261 | */ |
@@ -1648,7 +1648,7 @@ discard block |
||
| 1648 | 1648 | * field name (key) and order (value) pairs. |
| 1649 | 1649 | * |
| 1650 | 1650 | * @param array|string $fieldName Field name or array of field/order pairs |
| 1651 | - * @param int|string $order Field order (if one field is specified) |
|
| 1651 | + * @param integer $order Field order (if one field is specified) |
|
| 1652 | 1652 | * @return $this |
| 1653 | 1653 | */ |
| 1654 | 1654 | public function sort($fieldName, $order = 1) |
@@ -228,7 +228,7 @@ |
||
| 228 | 228 | * Get the types array map which holds all registered types and the corresponding |
| 229 | 229 | * type class |
| 230 | 230 | * |
| 231 | - * @return array $typesMap |
|
| 231 | + * @return string[] $typesMap |
|
| 232 | 232 | */ |
| 233 | 233 | public static function getTypesMap() |
| 234 | 234 | { |
@@ -968,7 +968,7 @@ discard block |
||
| 968 | 968 | } |
| 969 | 969 | |
| 970 | 970 | /** |
| 971 | - * @return array |
|
| 971 | + * @return string|null |
|
| 972 | 972 | */ |
| 973 | 973 | public function getShardKey() |
| 974 | 974 | { |
@@ -1068,7 +1068,7 @@ discard block |
||
| 1068 | 1068 | /** |
| 1069 | 1069 | * Gets the ReflectionProperties of the mapped class. |
| 1070 | 1070 | * |
| 1071 | - * @return array An array of ReflectionProperty instances. |
|
| 1071 | + * @return \ReflectionProperty[] An array of ReflectionProperty instances. |
|
| 1072 | 1072 | */ |
| 1073 | 1073 | public function getReflectionProperties() |
| 1074 | 1074 | { |
@@ -1619,7 +1619,7 @@ discard block |
||
| 1619 | 1619 | * |
| 1620 | 1620 | * @param string $dbFieldName |
| 1621 | 1621 | * |
| 1622 | - * @return array |
|
| 1622 | + * @return string |
|
| 1623 | 1623 | * @throws MappingException |
| 1624 | 1624 | */ |
| 1625 | 1625 | public function getFieldMappingByDbFieldName($dbFieldName) |
@@ -2136,7 +2136,7 @@ discard block |
||
| 2136 | 2136 | * - reflClass (ReflectionClass) |
| 2137 | 2137 | * - reflFields (ReflectionProperty array) |
| 2138 | 2138 | * |
| 2139 | - * @return array The names of all the fields that should be serialized. |
|
| 2139 | + * @return string[] The names of all the fields that should be serialized. |
|
| 2140 | 2140 | */ |
| 2141 | 2141 | public function __sleep() |
| 2142 | 2142 | { |
@@ -21,6 +21,7 @@ discard block |
||
| 21 | 21 | * |
| 22 | 22 | * @param mixed $id File ID |
| 23 | 23 | * @param resource $destination Writable Stream |
| 24 | + * @return void |
|
| 24 | 25 | */ |
| 25 | 26 | public function downloadToStream($id, $destination): void; |
| 26 | 27 | |
@@ -35,7 +36,6 @@ discard block |
||
| 35 | 36 | * Writes the contents of a readable stream to a GridFS file. |
| 36 | 37 | * |
| 37 | 38 | * @param resource $source Readable stream |
| 38 | - * @param object|null $metadata |
|
| 39 | 39 | * @return object The newly created GridFS file |
| 40 | 40 | */ |
| 41 | 41 | public function uploadFromStream(string $filename, $source, ?UploadOptions $uploadOptions = null); |
@@ -43,9 +43,7 @@ discard block |
||
| 43 | 43 | /** |
| 44 | 44 | * Writes the contents of a file to a GridFS file. |
| 45 | 45 | * |
| 46 | - * @param string $path |
|
| 47 | 46 | * @param string|null $filename The filename to upload the file with. If no filename is provided, the name of the source file will be used. |
| 48 | - * @param object|null $metadata |
|
| 49 | 47 | * @return object The newly created GridFS file |
| 50 | 48 | */ |
| 51 | 49 | public function uploadFromFile(string $source, ?string $filename = null, ?UploadOptions $uploadOptions = null); |