You are here

public function ProcessBuilder::setArguments in Zircon Profile 8

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

Sets the arguments of the process.

Arguments must not be escaped. Previous arguments are removed.

Parameters

string[] $arguments:

Return value

ProcessBuilder

File

vendor/symfony/process/ProcessBuilder.php, line 96

Class

ProcessBuilder
Process builder.

Namespace

Symfony\Component\Process

Code

public function setArguments(array $arguments) {
  $this->arguments = $arguments;
  return $this;
}