Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. DumpServer.php

function DumpServer::start

1 call to DumpServer::start()
DumpServer::listen in vendor/symfony/var-dumper/Server/DumpServer.php

File

vendor/symfony/var-dumper/Server/DumpServer.php, line 45

Class

DumpServer
A server collecting Data clones sent by a ServerDumper.

Namespace

Symfony\Component\VarDumper\Server

Code

public function start() : void {
    if (!($this->socket = stream_socket_server($this->host, $errno, $errstr))) {
        throw new \RuntimeException(\sprintf('Server start failed on "%s": ', $this->host) . $errstr . ' ' . $errno);
    }
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal