function AbstractDumper::echoLine
Generic line dumper callback.
1 call to AbstractDumper::echoLine()
- AbstractDumper::setOutput in vendor/
symfony/ var-dumper/ Dumper/ AbstractDumper.php - Sets the output destination of the dumps.
File
-
vendor/
symfony/ var-dumper/ Dumper/ AbstractDumper.php, line 172
Class
- AbstractDumper
- Abstract mechanism for dumping a Data object.
Namespace
Symfony\Component\VarDumper\DumperCode
protected function echoLine(string $line, int $depth, string $indentPad) : void {
if (-1 !== $depth) {
fwrite($this->outputStream, str_repeat($indentPad, $depth) . $line . "\n");
}
}