Chris@0: Chris@0: * Chris@0: * For the full copyright and license information, please view the LICENSE Chris@0: * file that was distributed with this source code. Chris@0: */ Chris@0: Chris@0: namespace Symfony\Component\DependencyInjection\Dumper; Chris@0: Chris@0: /** Chris@0: * DumperInterface is the interface implemented by service container dumper classes. Chris@0: * Chris@0: * @author Fabien Potencier Chris@0: */ Chris@0: interface DumperInterface Chris@0: { Chris@0: /** Chris@0: * Dumps the service container. Chris@0: * Chris@0: * @param array $options An array of options Chris@0: * Chris@0: * @return string The representation of the service container Chris@0: */ Chris@17: public function dump(array $options = []); Chris@0: }