public function Process::getCommandLine

Gets the command line to be executed.

Return value

string The command to execute

1 call to Process::getCommandLine()
PhpProcess::start in drupal/core/vendor/symfony/process/Symfony/Component/Process/PhpProcess.php
Starts the process and returns after sending the STDIN.

File

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

Class

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

Namespace

Symfony\Component\Process

Code

public function getCommandLine() {
  return $this->commandline;
}