Completed
Pull Request — master (#1691)
by
unknown
08:27
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|null $connectFromField
94
+     */
92 95
     public function connectFromField($connectFromField)
93 96
     {
94 97
         // No targetClass mapping - simply use field name as is
@@ -110,6 +113,9 @@  discard block
 block discarded – undo
110 113
         return parent::connectFromField($this->getReferencedFieldName($connectFromField, $referenceMapping));
111 114
     }
112 115
 
116
+    /**
117
+     * @param string $connectToField
118
+     */
113 119
     public function connectToField($connectToField)
114 120
     {
115 121
         return parent::connectToField($this->convertTargetFieldName($connectToField));
@@ -165,6 +171,9 @@  discard block
 block discarded – undo
165 171
         return Type::convertPHPToDatabaseValue(parent::convertExpression($expression));
166 172
     }
167 173
 
174
+    /**
175
+     * @return string
176
+     */
168 177
     protected function convertTargetFieldName($fieldName)
169 178
     {
170 179
         if (is_array($fieldName)) {
Please login to merge, or discard this patch.