PHP Classes

File: framework/logging/shortcuts.php

Recommend this page to a friend!
  Classes of Mark Richards   CliqonV4   framework/logging/shortcuts.php   Download  
File: framework/logging/shortcuts.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: CliqonV4
Framework with modules to build Web applications
Author: By
Last change:
Date: 6 years ago
Size: 555 bytes
 

Contents

Class file image Download
<?php

/**
 * This file is part of the Tracy (https://tracy.nette.org)
 * Copyright (c) 2004 David Grudl (https://davidgrudl.com)
 */

if (!function_exists('dump')) {
   
/**
     * Tracy\Debugger::dump() shortcut.
     * @tracySkipLocation
     */
   
function dump($var)
    {
       
array_map('Tracy\Debugger::dump', func_get_args());
        return
$var;
    }
}

if (!
function_exists('bdump')) {
   
/**
     * Tracy\Debugger::barDump() shortcut.
     * @tracySkipLocation
     */
   
function bdump($var)
    {
       
call_user_func_array('Tracy\Debugger::barDump', func_get_args());
        return
$var;
    }
}