@@ -2631,7 +2631,7 @@ |
||
2631 | 2631 | * @param array $data The data for the document. |
2632 | 2632 | * @param array $hints Any hints to account for during reconstitution/lookup of the document. |
2633 | 2633 | * @param object $document The document to be hydrated into in case of creation |
2634 | - * @return object The document instance. |
|
2634 | + * @return callable|null The document instance. |
|
2635 | 2635 | * @internal Highly performance-sensitive method. |
2636 | 2636 | */ |
2637 | 2637 | public function getOrCreateDocument($className, $data, &$hints = array(), $document = null) |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | * Construct a Builder |
92 | 92 | * |
93 | 93 | * @param DocumentManager $dm |
94 | - * @param string[]|string|null $documentName (optional) an array of document names, the document name, or none |
|
94 | + * @param string|null $documentName (optional) an array of document names, the document name, or none |
|
95 | 95 | */ |
96 | 96 | public function __construct(DocumentManager $dm, $documentName = null) |
97 | 97 | { |
@@ -144,7 +144,7 @@ discard block |
||
144 | 144 | * If a custom callable is used, its signature should conform to the default |
145 | 145 | * Closure defined in {@link ReferencePrimer::__construct()}. |
146 | 146 | * |
147 | - * @param boolean|callable $primer |
|
147 | + * @param boolean $primer |
|
148 | 148 | * @return $this |
149 | 149 | * @throws \InvalidArgumentException If $primer is not boolean or callable |
150 | 150 | */ |
@@ -606,7 +606,7 @@ |
||
606 | 606 | * This is just a convenient shortcut for getRepository($documentName)->find($id). |
607 | 607 | * |
608 | 608 | * @param string $documentName |
609 | - * @param mixed $identifier |
|
609 | + * @param \MongoId $identifier |
|
610 | 610 | * @param int $lockMode |
611 | 611 | * @param int $lockVersion |
612 | 612 | * @return object $document |