You are here

public function FirePhp::dump in Devel 8.2

Same name and namespace in other branches
  1. 8 src/Plugin/Devel/Dumper/FirePhp.php \Drupal\devel\Plugin\Devel\Dumper\FirePhp::dump()

Dumps information about a variable.

Parameters

mixed $input: The variable to dump.

string $name: (optional) The label to output before variable, defaults to NULL.

Overrides DevelDumperBase::dump

1 call to FirePhp::dump()
FirePhp::export in src/Plugin/Devel/Dumper/FirePhp.php
Returns a string representation of a variable.

File

src/Plugin/Devel/Dumper/FirePhp.php, line 21

Class

FirePhp
Provides a FirePhp dumper plugin.

Namespace

Drupal\devel\Plugin\Devel\Dumper

Code

public function dump($input, $name = NULL) {
  $fb = new \FB();
  $fb
    ->dump($name, $input);
}