Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. AbstractDumper.php

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\Dumper

Code

protected function dumpLine(int $depth) : void {
    ($this->lineDumper)($this->line, $depth, $this->indentPad);
    $this->line = '';
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal