Completed
Pull Request — master (#123)
by Simon
03:20
created
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/XmlDriver.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -40,6 +40,7 @@
 block discarded – undo
40 40
 
41 41
     /**
42 42
      * {@inheritDoc}
43
+     * @param string[] $locator
43 44
      */
44 45
     public function __construct($locator, $fileExtension = self::DEFAULT_FILE_EXTENSION)
45 46
     {
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ODM/CouchDB/Functional/MappedSuperclassTest.php 1 patch
Doc Comments   +18 added lines patch added patch discarded remove patch
@@ -58,6 +58,9 @@  discard block
 block discarded – undo
58 58
      */
59 59
     private $mappedRelated1;
60 60
 
61
+    /**
62
+     * @param integer $val
63
+     */
61 64
     public function setMapped1($val)
62 65
     {
63 66
         $this->mapped1 = $val;
@@ -68,6 +71,9 @@  discard block
 block discarded – undo
68 71
         return $this->mapped1;
69 72
     }
70 73
 
74
+    /**
75
+     * @param string $val
76
+     */
71 77
     public function setMapped2($val)
72 78
     {
73 79
         $this->mapped2 = $val;
@@ -78,6 +84,9 @@  discard block
 block discarded – undo
78 84
         return $this->mapped2;
79 85
     }
80 86
 
87
+    /**
88
+     * @param MappedSuperclassRelated1 $mappedRelated1
89
+     */
81 90
     public function setMappedRelated1($mappedRelated1)
82 91
     {
83 92
         $this->mappedRelated1 = $mappedRelated1;
@@ -96,6 +105,9 @@  discard block
 block discarded – undo
96 105
     /** @Field(type="string") */
97 106
     private $name;
98 107
 
108
+    /**
109
+     * @param string $name
110
+     */
99 111
     public function setName($name)
100 112
     {
101 113
         $this->name = $name;
@@ -121,6 +133,9 @@  discard block
 block discarded – undo
121 133
     /** @Field(type="string") */
122 134
     private $name;
123 135
 
136
+    /**
137
+     * @param string $name
138
+     */
124 139
     public function setName($name)
125 140
     {
126 141
         $this->name = $name;
@@ -131,6 +146,9 @@  discard block
 block discarded – undo
131 146
         return $this->name;
132 147
     }
133 148
 
149
+    /**
150
+     * @return string
151
+     */
134 152
     public function getId()
135 153
     {
136 154
         return $this->id;
Please login to merge, or discard this patch.