Completed
Pull Request — master (#154)
by
unknown
05:50 queued 01:40
created
lib/Doctrine/ODM/CouchDB/Event/LifecycleEventArgs.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -26,6 +26,9 @@
 block discarded – undo
26 26
 
27 27
     private $documentManager;
28 28
 
29
+    /**
30
+     * @param \Doctrine\ODM\CouchDB\DocumentManager $documentManager
31
+     */
29 32
     function __construct($document, $documentManager)
30 33
     {
31 34
         $this->document = $document;
Please login to merge, or discard this patch.
lib/Doctrine/ODM/CouchDB/Mapping/Driver/XmlDriver.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -41,6 +41,7 @@
 block discarded – undo
41 41
 
42 42
     /**
43 43
      * {@inheritDoc}
44
+     * @param string[] $locator
44 45
      */
45 46
     public function __construct($locator, $fileExtension = self::DEFAULT_FILE_EXTENSION)
46 47
     {
Please login to merge, or discard this patch.
lib/Doctrine/ODM/CouchDB/Mapping/EmbeddedDocumentSerializer.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -38,6 +38,9 @@
 block discarded – undo
38 38
 
39 39
     private $metadataResolver;
40 40
 
41
+    /**
42
+     * @param ClassMetadataFactory $metadataFactory
43
+     */
41 44
     public function __construct($metadataFactory, $metadataResolver)
42 45
     {
43 46
         $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
@@ -145,6 +145,9 @@
 block discarded – undo
145 145
                                                                            $this->metadataResolver);
146 146
     }
147 147
 
148
+    /**
149
+     * @param string $documentName
150
+     */
148 151
     private function assertValidDocumentType($documentName, $document, $type)
149 152
     {
150 153
         if ($documentName && !($document instanceof $documentName)) {
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ODM/CouchDB/CouchDBFunctionalTestCase.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -46,6 +46,9 @@
 block discarded – undo
46 46
         return $this->logger;
47 47
     }
48 48
 
49
+    /**
50
+     * @return string
51
+     */
49 52
     public function getTestDatabase()
50 53
     {
51 54
         return TestUtil::getTestDatabase();
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ODM/CouchDB/Functional/CascadeRemoveTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -41,6 +41,9 @@
 block discarded – undo
41 41
         });
42 42
     }
43 43
 
44
+    /**
45
+     * @param \Closure $closure
46
+     */
44 47
     public function wrapRemove($closure)
45 48
     {
46 49
         $group1 = new \Doctrine\Tests\Models\CMS\CmsGroup();
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ODM/CouchDB/Mapping/AnnotationDriverTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -65,6 +65,9 @@
 block discarded – undo
65 65
         return new \Doctrine\ODM\CouchDB\Mapping\Driver\AnnotationDriver($reader);
66 66
     }
67 67
 
68
+    /**
69
+     * @param string $entityClassName
70
+     */
68 71
     protected function ensureIsLoaded($entityClassName)
69 72
     {
70 73
         new $entityClassName;
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ODM/CouchDB/View/DoctrineAssociationsTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
     }
19 19
 
20 20
     /**
21
-     * @return NativeQuery
21
+     * @return Query
22 22
      */
23 23
     protected function createDoctrineViewQuery()
24 24
     {
Please login to merge, or discard this patch.
lib/Doctrine/ODM/CouchDB/Mapping/Driver/YamlDriver.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -41,6 +41,7 @@
 block discarded – undo
41 41
 
42 42
     /**
43 43
      * {@inheritDoc}
44
+     * @param string[] $locator
44 45
      */
45 46
     public function __construct($locator, $fileExtension = self::DEFAULT_FILE_EXTENSION)
46 47
     {
Please login to merge, or discard this patch.