Completed
Pull Request — master (#138)
by
unknown
02:47
created
lib/Doctrine/ODM/CouchDB/Mapping/EmbeddedDocumentSerializer.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -40,6 +40,10 @@
 block discarded – undo
40 40
 
41 41
     private $documentManager;
42 42
 
43
+    /**
44
+     * @param ClassMetadataFactory $metadataFactory
45
+     * @param \Doctrine\ODM\CouchDB\DocumentManager $documentManager
46
+     */
43 47
     public function __construct($metadataFactory, $metadataResolver, $documentManager = null)
44 48
     {
45 49
         $this->metadataFactory = $metadataFactory;
Please login to merge, or discard this patch.
lib/Doctrine/ODM/CouchDB/UnitOfWork.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -147,6 +147,9 @@
 block discarded – undo
147 147
             $this->dm);
148 148
     }
149 149
 
150
+    /**
151
+     * @param string $documentName
152
+     */
150 153
     private function assertValidDocumentType($documentName, $document, $type)
151 154
     {
152 155
         if ($documentName && !($document instanceof $documentName)) {
Please login to merge, or discard this patch.