You are here

public function DumperInterface::dump in Zircon Profile 8

Same name in this branch
  1. 8 vendor/symfony/translation/Dumper/DumperInterface.php \Symfony\Component\Translation\Dumper\DumperInterface::dump()
  2. 8 vendor/symfony/dependency-injection/Dumper/DumperInterface.php \Symfony\Component\DependencyInjection\Dumper\DumperInterface::dump()
Same name and namespace in other branches
  1. 8.0 vendor/symfony/dependency-injection/Dumper/DumperInterface.php \Symfony\Component\DependencyInjection\Dumper\DumperInterface::dump()

Dumps the service container.

Parameters

array $options An array of options:

Return value

string The representation of the service container

5 methods override DumperInterface::dump()
GraphvizDumper::dump in vendor/symfony/dependency-injection/Dumper/GraphvizDumper.php
Dumps the service container as a graphviz graph.
OptimizedPhpArrayDumper::dump in core/lib/Drupal/Component/DependencyInjection/Dumper/OptimizedPhpArrayDumper.php
Dumps the service container.
PhpDumper::dump in vendor/symfony/dependency-injection/Dumper/PhpDumper.php
Dumps the service container as a PHP class.
XmlDumper::dump in vendor/symfony/dependency-injection/Dumper/XmlDumper.php
Dumps the service container as an XML string.
YamlDumper::dump in vendor/symfony/dependency-injection/Dumper/YamlDumper.php
Dumps the service container as an YAML string.

File

vendor/symfony/dependency-injection/Dumper/DumperInterface.php, line 28

Class

DumperInterface
DumperInterface is the interface implemented by service container dumper classes.

Namespace

Symfony\Component\DependencyInjection\Dumper

Code

public function dump(array $options = array());