Completed
Pull Request — master (#514)
by Jordi Sala
20:16 queued 18:32
created
src/Model/ModelManager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -221,7 +221,7 @@
 block discarded – undo
221 221
     /**
222 222
      * @param ProxyQuery $query
223 223
      *
224
-     * @return mixed
224
+     * @return \PHPCR\Query\QueryResultInterface
225 225
      */
226 226
     public function executeQuery($query)
227 227
     {
Please login to merge, or discard this patch.
src/Controller/AutocompleteController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -152,7 +152,7 @@
 block discarded – undo
152 152
      *
153 153
      * @throws \RuntimeException
154 154
      *
155
-     * @return \Symfony\Component\Form\FormInterface
155
+     * @return \Sonata\AdminBundle\Admin\FieldDescriptionInterface
156 156
      */
157 157
     private function retrieveFieldDescription(AdminInterface $admin, $field)
158 158
     {
Please login to merge, or discard this patch.
src/Datagrid/ProxyQuery.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -126,7 +126,7 @@
 block discarded – undo
126 126
      *
127 127
      * @throws \Exception if $this->sortOrder is not ASC or DESC
128 128
      *
129
-     * @return array of documents
129
+     * @return \PHPCR\Query\QueryResultInterface of documents
130 130
      */
131 131
     public function execute(array $params = [], $hydrationMode = null)
132 132
     {
Please login to merge, or discard this patch.
tests/Resources/Document/Content.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -190,7 +190,7 @@  discard block
 block discarded – undo
190 190
     }
191 191
 
192 192
     /**
193
-     * @param mixed $child
193
+     * @param Content $child
194 194
      */
195 195
     public function setChild($child): void
196 196
     {
@@ -214,7 +214,7 @@  discard block
 block discarded – undo
214 214
     }
215 215
 
216 216
     /**
217
-     * @return mixed
217
+     * @return Content
218 218
      */
219 219
     public function getSingleRoute()
220 220
     {
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
     }
223 223
 
224 224
     /**
225
-     * @param mixed $singleRoute
225
+     * @param Content $singleRoute
226 226
      */
227 227
     public function setSingleRoute($singleRoute): void
228 228
     {
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
     }
247 247
 
248 248
     /**
249
-     * @param $route
249
+     * @param Content $route
250 250
      */
251 251
     public function addRoute($route): void
252 252
     {
@@ -262,7 +262,7 @@  discard block
 block discarded – undo
262 262
     }
263 263
 
264 264
     /**
265
-     * @param $child
265
+     * @param Content $child
266 266
      */
267 267
     public function addChild($child): void
268 268
     {
Please login to merge, or discard this patch.