Skip to content

Commit

Permalink
Fix functions
Browse files Browse the repository at this point in the history
  • Loading branch information
levidurfee committed Jan 29, 2020
1 parent 87cacac commit 8975eb3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions functions.php
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<?php

if(!function_exists('Dd')) {
function dd($input) {
function Dd($input) {
Dump($input);
die();
}
}

if(!function_exists('Dump')) {
function dump($input) {
function Dump($input) {
if(BD_WEB_REQUEST) {
echo '<pre>';
}
Expand Down

0 comments on commit 8975eb3

Please sign in to comment.