Completed
Push — master ( 038cbf...eca7f6 )
by Luke
02:19 queued 15s
created
src/Collection/AbstractCollection.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -749,7 +749,7 @@
 block discarded – undo
749 749
     /**
750 750
      * Returns collection in reverse order.
751 751
      *
752
-     * @param null $preserveKeys True if you want to preserve collection's keys
752
+     * @param boolean $preserveKeys True if you want to preserve collection's keys
753 753
      *
754 754
      * @return AbstractCollection This collection in reverse order.
755 755
      */
Please login to merge, or discard this patch.
src/functions.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -81,17 +81,17 @@
 block discarded – undo
81 81
         $trace = debug_backtrace(DEBUG_BACKTRACE_PROVIDE_OBJECT, 1);
82 82
         $label = 'File: ';
83 83
         $label .= pathinfo($trace[0]['file'], PATHINFO_FILENAME);
84
-        $label .= ':' . $trace[0]['line'];
85
-        echo $label . "\n";
84
+        $label .= ':'.$trace[0]['line'];
85
+        echo $label."\n";
86 86
     } else {
87
-        echo $label . "\n" . implode(
87
+        echo $label."\n".implode(
88 88
                 array_map(
89
-                    function () {
89
+                    function() {
90 90
                         return '-';
91 91
                     },
92 92
                     str_split($label)
93 93
                 )
94
-            ) . "\n";
94
+            )."\n";
95 95
     }
96 96
     var_dump($input);
97 97
     echo "\n";
Please login to merge, or discard this patch.