Adds an unescaped argument to the command string.
Parameters
string $argument A command argument:
File
- drupal/core/vendor/symfony/process/Symfony/Component/Process/ProcessBuilder.php, line 49
Class
- ProcessBuilder
- Process builder.
Namespace
Symfony\Component\Process
Code
public function add($argument) {
$this->arguments[] = $argument;
return $this;
}