Completed
Pull Request — master (#1)
by Ryosuke
01:46
created
src/Collection.php 1 patch
Doc Comments   +8 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
     private $fn_cnt = 0;
23 23
 
24 24
     /**
25
-     * @return \Spindle\Collection
25
+     * @return Collection
26 26
      */
27 27
     public static function from($iterable, $debug = null)
28 28
     {
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
      * @param int|string $end
36 36
      * @param int $step
37 37
      * @param bool $debug
38
-     * @return \Spindle\Collection
38
+     * @return Collection
39 39
      */
40 40
     public static function range($start, $end, $step = 1, $debug = null)
41 41
     {
@@ -81,6 +81,7 @@  discard block
 block discarded – undo
81 81
 
82 82
     /**
83 83
      * @param iterable $seed
84
+     * @param string $type
84 85
      */
85 86
     public function __construct($seed, $debug = null, $type = null)
86 87
     {
@@ -215,6 +216,11 @@  discard block
 block discarded – undo
215 216
         ];
216 217
     }
217 218
 
219
+    /**
220
+     * @param string $_code
221
+     * @param string $_before
222
+     * @param string $_after
223
+     */
218 224
     private static function evaluate($_seed, $_vars, $_code, $_before, $_after)
219 225
     {
220 226
         set_error_handler(function($severity, $message, $file, $line){
Please login to merge, or discard this patch.