Commit 4b97c28c by Dayle Rees

Merge pull request #860 from stevefrost/develop

Updated the helper method dd()
parents 184cc090 a8b5231e
......@@ -34,7 +34,10 @@ function __($key, $replacements = array(), $language = null)
*/
function dd($value)
{
die(var_dump($value));
echo "<pre>";
var_dump($value);
echo "</pre>";
die;
}
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment