/home/techb158/ileadtechnology.com/vendor/filp/whoops/src/Whoops/Util
NameSizeModeActions
HtmlDumperOutput.php7180644editdlrm
Misc.php19870644editdlrm
SystemFacade.php27030644editdlrm
TemplateHelper.php94750644editdlrm
Edit: /home/techb158/ileadtechnology.com/vendor/filp/whoops/src/Whoops/Util/HtmlDumperOutput.php (718B)
*/ namespace Whoops\Util; /** * Used as output callable for Symfony\Component\VarDumper\Dumper\HtmlDumper::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; } }