You are here

public function DumperInterface::dump in Service Container 7

Same name and namespace in other branches
  1. 7.2 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Dumper/DumperInterface.php \Symfony\Component\DependencyInjection\Dumper\DumperInterface::dump()

Dumps the service container.

@api

Parameters

array $options An array of options:

Return value

string The representation of the service container

6 methods override DumperInterface::dump()
GraphvizDumper::dump in modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Dumper/GraphvizDumper.php
Dumps the service container as a graphviz graph.
OptimizedPhpArrayDumper::dump in lib/Drupal/Component/DependencyInjection/Dumper/OptimizedPhpArrayDumper.php
Dumps the service container.
PhpArrayDumper::dump in lib/Drupal/Core/DependencyInjection/Dumper/PhpArrayDumper.php
Dumps the service container.
PhpDumper::dump in modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php
Dumps the service container as a PHP class.
XmlDumper::dump in modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Dumper/XmlDumper.php
Dumps the service container as an XML string.

... See full list

File

modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Dumper/DumperInterface.php, line 32

Class

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

Namespace

Symfony\Component\DependencyInjection\Dumper

Code

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