Вход Регистрация
Файл: vendor/filp/whoops/src/Whoops/Util/HtmlDumperOutput.php
Строк: 24
<?php
/**
 * Whoops - php errors for cool kids
 * @author Filipe Dobreira <http://github.com/filp>
 */

namespace WhoopsUtil;

/**
 * Used as output callable for SymfonyComponentVarDumperDumperHtmlDumper::dump()
 *
 * @see TemplateHelper::dump()
 */
class HtmlDumperOutput
{
    private 
$output;

    public function 
__invoke($line$depth)
    {
        
// A negative depth means "end of dump"
        
if ($depth >= 0) {
            
// Adds a two spaces indentation to the line
            
$this->output .= str_repeat('  '$depth) . $line "n";
        }
    }

    public function 
getOutput()
    {
        return 
$this->output;
    }

    public function 
clear()
    {
        
$this->output null;
    }
}
Онлайн: 1
Реклама