function AbstractDumper::dumpLine
Dumps the current line.
Parameters
int $depth The recursive depth in the dumped structure for the line being dumped,: or -1 to signal the end-of-dump to the line dumper callable
4 calls to AbstractDumper::dumpLine()
- AbstractDumper::dump in vendor/
symfony/ var-dumper/ Dumper/ AbstractDumper.php - Dumps a Data object.
- CliDumper::dumpLine in vendor/
symfony/ var-dumper/ Dumper/ CliDumper.php - Dumps the current line.
- CliDumper::dumpLine in vendor/
symfony/ var-dumper/ Dumper/ CliDumper.php - Dumps the current line.
- HtmlDumper::dumpLine in vendor/
symfony/ var-dumper/ Dumper/ HtmlDumper.php - Dumps the current line.
1 method overrides AbstractDumper::dumpLine()
- CliDumper::dumpLine in vendor/
symfony/ var-dumper/ Dumper/ CliDumper.php - Dumps the current line.
File
-
vendor/
symfony/ var-dumper/ Dumper/ AbstractDumper.php, line 163
Class
- AbstractDumper
- Abstract mechanism for dumping a Data object.
Namespace
Symfony\Component\VarDumper\DumperCode
protected function dumpLine(int $depth) : void {
($this->lineDumper)($this->line, $depth, $this->indentPad);
$this->line = '';
}