function ServerDumper::__construct
Parameters
string $host The server host:
DataDumperInterface|null $wrappedDumper A wrapped instance used whenever we failed contacting the server:
ContextProviderInterface[] $contextProviders Context providers indexed by context name:
File
-
vendor/
symfony/ var-dumper/ Dumper/ ServerDumper.php, line 32
Class
- ServerDumper
- ServerDumper forwards serialized Data clones to a server.
Namespace
Symfony\Component\VarDumper\DumperCode
public function __construct(string $host, ?DataDumperInterface $wrappedDumper = null, array $contextProviders = []) {
$this->connection = new Connection($host, $contextProviders);
}