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: use Symfony\Component\DependencyInjection\ContainerBuilder; Chris@0: Chris@0: /** Chris@0: * Dumper is the abstract class for all built-in dumpers. Chris@0: * Chris@0: * @author Fabien Potencier Chris@0: */ Chris@0: abstract class Dumper implements DumperInterface Chris@0: { Chris@0: protected $container; Chris@0: Chris@0: public function __construct(ContainerBuilder $container) Chris@0: { Chris@0: $this->container = $container; Chris@0: } Chris@0: }