Skip to content

Commit 9a42052

Browse files
Fix
1 parent 55c90b2 commit 9a42052

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

solr/Documents/SolrDocument.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ public function getFieldNames() {}
179179
* (PECL solr &gt;= 0.9.2)<br/>
180180
* Returns a SolrInputDocument equivalent of the object
181181
* @link https://php.net/manual/en/solrdocument.getinputdocument.php
182-
* @return SolrInputDocument <p>
182+
* @return SolrInputDocument|null <p>
183183
* Returns a SolrInputDocument on success and <b>NULL</b> on failure.
184184
* </p>
185185
*/
@@ -238,6 +238,7 @@ public function merge(SolrInputDocument $sourceDoc, $overwrite = true) {}
238238
* (PECL solr &gt;= 0.9.2)<br/>
239239
* Moves the internal pointer to the next field
240240
* @link https://php.net/manual/en/solrdocument.next.php
241+
* @return void
241242
*/
242243
public function next() {}
243244

@@ -305,6 +306,7 @@ public function reset() {}
305306
* (PECL solr &gt;= 0.9.2)<br/>
306307
* Resets the internal pointer to the beginning
307308
* @link https://php.net/manual/en/solrdocument.rewind.php
309+
* @return void
308310
*/
309311
public function rewind() {}
310312

@@ -377,6 +379,7 @@ public function toArray() {}
377379
* @param string $serialized <p>
378380
* An XML representation of the document.
379381
* </p>
382+
* @return void
380383
*/
381384
public function unserialize($serialized) {}
382385

0 commit comments

Comments
 (0)