Completed
Push — master ( 13f15a...042b97 )
by Hiraku
02:14
created
src/Collection.php 2 patches
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -53,6 +53,9 @@  discard block
 block discarded – undo
53 53
         return new static(self::xrepeat($elem, $count));
54 54
     }
55 55
 
56
+    /**
57
+     * @param integer $count
58
+     */
56 59
     private static function xrepeat($elem, $count)
57 60
     {
58 61
         while ($count--) {
@@ -337,6 +340,11 @@  discard block
 block discarded – undo
337 340
         ];
338 341
     }
339 342
 
343
+    /**
344
+     * @param string $_code
345
+     * @param string $_before
346
+     * @param string $_after
347
+     */
340 348
     private static function evaluate($_seed, $_vars, $_code, $_before, $_after)
341 349
     {
342 350
         $_result = null;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -310,7 +310,7 @@
 block discarded – undo
310 310
     {
311 311
         return implode("\n", [
312 312
             static::class,
313
-            ' array-mode:' . (int)$this->is_array,
313
+            ' array-mode:' . (int) $this->is_array,
314 314
             " codes:\n  " . implode("\n  ", $this->ops)
315 315
         ]);
316 316
     }
Please login to merge, or discard this patch.