CustomVarDamp.php 413 Bytes
<?php
/**
 * Created by PhpStorm.
 * User: Cibermag
 * Date: 27.08.2015
 * Time: 16:47
 */
namespace common\components\debug;
use yii\helpers\BaseVarDumper;

class CustomVarDamp extends BaseVarDumper  {

    public static function dumpAndDie($var, $depth = 10, $highlight = false)
    {
        echo "<pre>";
        echo static::dumpAsString($var, $depth, $highlight);
        echo "</pre>";
        die;
    }
}