Dumper is the abstract class for all built-in dumpers.
@author Fabien Potencier <fabien@symfony.com>
@api
Expanded class hierarchy of Dumper
abstract class Dumper implements DumperInterface {
protected $container;
/**
* Constructor.
*
* @param ContainerBuilder $container The service container to dump
*
* @api
*/
public function __construct(ContainerBuilder $container) {
$this->container = $container;
}
}
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
Dumper:: |
protected | property | ||
Dumper:: |
public | function | Constructor. | 2 |
DumperInterface:: |
public | function | Dumps the service container. | 4 |