Skip to content

Commit

Permalink
Scrutinizer Auto-Fixes
Browse files Browse the repository at this point in the history
This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com
  • Loading branch information
scrutinizer-auto-fixer committed Dec 26, 2016
1 parent 4f83234 commit 49e8f63
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/Collection/AbstractCollection.php
Expand Up @@ -749,7 +749,7 @@ public function last(callable $callback)
/**
* Returns collection in reverse order.
*
* @param null $preserveKeys True if you want to preserve collection's keys
* @param boolean $preserveKeys True if you want to preserve collection's keys
*
* @return AbstractCollection This collection in reverse order.
*/
Expand Down
10 changes: 5 additions & 5 deletions src/functions.php
Expand Up @@ -81,17 +81,17 @@ function dd($input, $exit = true, $label = null)
$trace = debug_backtrace(DEBUG_BACKTRACE_PROVIDE_OBJECT, 1);
$label = 'File: ';
$label .= pathinfo($trace[0]['file'], PATHINFO_FILENAME);
$label .= ':' . $trace[0]['line'];
echo $label . "\n";
$label .= ':'.$trace[0]['line'];
echo $label."\n";
} else {
echo $label . "\n" . implode(
echo $label."\n".implode(
array_map(
function () {
function() {
return '-';
},
str_split($label)
)
) . "\n";
)."\n";
}
var_dump($input);
echo "\n";
Expand Down

0 comments on commit 49e8f63

Please sign in to comment.