Completed
Push — master ( 6c7957...8b906b )
by Alexandr
03:06
created
src/Relay/Connection/ArrayConnection.php 1 patch
Doc Comments   +10 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,9 +38,9 @@  discard block
 block discarded – undo
38 38
     }
39 39
 
40 40
     /**
41
-     * @param $cursor string
41
+     * @param string|null $cursor string
42 42
      *
43
-     * @return int|null
43
+     * @return string|null
44 44
      * @deprecated Use cursorToKey instead.
45 45
      */
46 46
     public static function cursorToOffset($cursor)
@@ -94,6 +94,10 @@  discard block
 block discarded – undo
94 94
         return self::connectionFromArraySlice($data, $args, 0, count($data));
95 95
     }
96 96
 
97
+    /**
98
+     * @param integer $sliceStart
99
+     * @param integer $arrayLength
100
+     */
97 101
     public static function connectionFromArraySlice(array $data, array $args, $sliceStart, $arrayLength)
98 102
     {
99 103
         $after  = isset($args['after']) ? $args['after'] : null;
@@ -139,6 +143,10 @@  discard block
 block discarded – undo
139 143
         ];
140 144
     }
141 145
 
146
+    /**
147
+     * @param string $object
148
+     * @param integer $index
149
+     */
142 150
     public static function edgeForObjectWithIndex($object, $index)
143 151
     {
144 152
         return [
Please login to merge, or discard this patch.