You are here

public function Process::getInput in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/process/Process.php \Symfony\Component\Process\Process::getInput()

Gets the Process input.

Return value

null|string The Process input

1 call to Process::getInput()
Process::getStdin in vendor/symfony/process/Process.php
Gets the contents of STDIN.

File

vendor/symfony/process/Process.php, line 1060

Class

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

Namespace

Symfony\Component\Process

Code

public function getInput() {
  return $this->input;
}