Dumper.php in Service Container 7
File
modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Dumper/Dumper.php
View source
<?php
namespace Symfony\Component\DependencyInjection\Dumper;
use Symfony\Component\DependencyInjection\ContainerBuilder;
abstract class Dumper implements DumperInterface {
protected $container;
public function __construct(ContainerBuilder $container) {
$this->container = $container;
}
}
Classes
Name |
Description |
Dumper |
Dumper is the abstract class for all built-in dumpers. |