Updated the dd function to var_dump inside pre tags, makes is a bit more readable
This commit is contained in:
parent
a018608569
commit
a8b5231e57
|
@ -34,7 +34,10 @@ function __($key, $replacements = array(), $language = null)
|
||||||
*/
|
*/
|
||||||
function dd($value)
|
function dd($value)
|
||||||
{
|
{
|
||||||
die(var_dump($value));
|
echo "<pre>";
|
||||||
|
var_dump($value);
|
||||||
|
echo "</pre>";
|
||||||
|
die;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue