Completed
Pull Request — master (#1654)
by Andreas
10:07
created
lib/Doctrine/ODM/MongoDB/Aggregation/Stage/GraphLookup.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -89,6 +89,9 @@  discard block
 block discarded – undo
89 89
         return parent::from($this->targetClass->getCollection());
90 90
     }
91 91
 
92
+    /**
93
+     * @param string $connectFromField
94
+     */
92 95
     public function connectFromField($connectFromField)
93 96
     {
94 97
         // No targetClass mapping - simply use field name as is
@@ -141,6 +144,9 @@  discard block
 block discarded – undo
141 144
         return $this;
142 145
     }
143 146
 
147
+    /**
148
+     * @param string $connectToField
149
+     */
144 150
     public function connectToField($connectToField)
145 151
     {
146 152
         return parent::connectToField($this->convertTargetFieldName($connectToField));
@@ -224,6 +230,9 @@  discard block
 block discarded – undo
224 230
         }
225 231
     }
226 232
 
233
+    /**
234
+     * @return string
235
+     */
227 236
     protected function convertTargetFieldName($fieldName)
228 237
     {
229 238
         if (is_array($fieldName)) {
Please login to merge, or discard this patch.
lib/Doctrine/ODM/MongoDB/Aggregation/Stage/Lookup.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -149,6 +149,7 @@  discard block
 block discarded – undo
149 149
 
150 150
     /**
151 151
      * {@inheritdoc}
152
+     * @param string $localField
152 153
      */
153 154
     public function localField($localField)
154 155
     {
@@ -157,12 +158,16 @@  discard block
 block discarded – undo
157 158
 
158 159
     /**
159 160
      * {@inheritdoc}
161
+     * @param string $foreignField
160 162
      */
161 163
     public function foreignField($foreignField)
162 164
     {
163 165
         return parent::foreignField($this->prepareFieldName($foreignField, $this->targetClass));
164 166
     }
165 167
 
168
+    /**
169
+     * @return string
170
+     */
166 171
     protected function prepareFieldName($fieldName, ClassMetadata $class = null)
167 172
     {
168 173
         if (!$class) {
Please login to merge, or discard this patch.