Completed
Pull Request — master (#138)
by
unknown
02:54
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
             $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.
tests/Doctrine/Tests/ODM/CouchDB/Functional/EmbedManyTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use Doctrine\Tests\Models\Embedded\Embedded;
6 6
 use Doctrine\Tests\Models\Embedded\EmbeddedReference;
7 7
 use Doctrine\Tests\Models\Embedded\Embedder;
8
-use Doctrine\Tests\Models\Embedded\Nested;
9 8
 
10 9
 class EmbedManyTest extends \Doctrine\Tests\ODM\CouchDB\CouchDBFunctionalTestCase
11 10
 {
Please login to merge, or discard this patch.