Completed
Pull Request — master (#511)
by Mantas
02:29
created
Service/Json/JsonReader.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -190,7 +190,7 @@
 block discarded – undo
190 190
     /**
191 191
      * Returns parsed current line.
192 192
      *
193
-     * @return mixed
193
+     * @return string
194 194
      */
195 195
     public function current()
196 196
     {
Please login to merge, or discard this patch.
Service/Manager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -284,7 +284,7 @@
 block discarded – undo
284 284
      *
285 285
      * @param array $params Parameters that will be passed to the flush or refresh queries.
286 286
      *
287
-     * @return null|array
287
+     * @return callable|null
288 288
      */
289 289
     public function commit(array $params = [])
290 290
     {
Please login to merge, or discard this patch.
Service/Repository.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -359,7 +359,7 @@
 block discarded – undo
359 359
     /**
360 360
      * Parses raw result.
361 361
      *
362
-     * @param array  $raw
362
+     * @param callable  $raw
363 363
      * @param string $resultsType
364 364
      * @param string $scrollDuration
365 365
      *
Please login to merge, or discard this patch.
Result/Converter.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -37,10 +37,10 @@  discard block
 block discarded – undo
37 37
     /**
38 38
      * Converts raw array to document.
39 39
      *
40
-     * @param array      $rawData
40
+     * @param callable      $rawData
41 41
      * @param Repository $repository
42 42
      *
43
-     * @return object
43
+     * @return \ReflectionClass
44 44
      *
45 45
      * @throws \LogicException
46 46
      */
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
      * @param \ReflectionClass $object
79 79
      * @param array            $aliases
80 80
      *
81
-     * @return object
81
+     * @return \ReflectionClass
82 82
      */
83 83
     public function assignArrayToObject(array $array, $object, array $aliases)
84 84
     {
Please login to merge, or discard this patch.