Completed
Pull Request — master (#1910)
by Andreas
20:32
created
lib/Doctrine/ODM/MongoDB/Tools/Console/Command/Schema/UpdateCommand.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -51,12 +51,18 @@
 block discarded – undo
51 51
 
52 52
     /**
53 53
      * @param object $document
54
+     * @param integer|null $maxTimeMs
55
+     * @param null|WriteConcern $writeConcern
54 56
      */
55 57
     protected function processDocumentIndex(SchemaManager $sm, string $document, ?int $maxTimeMs, ?WriteConcern $writeConcern)
56 58
     {
57 59
         $sm->updateDocumentIndexes($document, $maxTimeMs, $writeConcern);
58 60
     }
59 61
 
62
+    /**
63
+     * @param integer|null $maxTimeMs
64
+     * @param null|WriteConcern $writeConcern
65
+     */
60 66
     protected function processIndex(SchemaManager $sm, ?int $maxTimeMs, ?WriteConcern $writeConcern)
61 67
     {
62 68
         $sm->updateIndexes($maxTimeMs, $writeConcern);
Please login to merge, or discard this patch.