You are here

interface DumperInterface in Zircon Profile 8

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

DumperInterface is the interface implemented by service container dumper classes.

@author Fabien Potencier <fabien@symfony.com>

Hierarchy

Expanded class hierarchy of DumperInterface

All classes that implement DumperInterface

File

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

Namespace

Symfony\Component\DependencyInjection\Dumper
View source
interface DumperInterface {

  /**
   * Dumps the service container.
   *
   * @param array $options An array of options
   *
   * @return string The representation of the service container
   */
  public function dump(array $options = array());

}

Members

Namesort descending Modifiers Type Description Overrides
DumperInterface::dump public function Dumps the service container.