public function Process::getTimeout

Gets the process timeout.

Return value

integer|null The timeout in seconds or null if it's disabled

File

drupal/core/vendor/symfony/process/Symfony/Component/Process/Process.php, line 842

Class

Process
Process is a thin wrapper around proc_* functions to ease start independent PHP processes.

Namespace

Symfony\Component\Process

Code

public function getTimeout() {
  return $this->timeout;
}