[Process] Add ProcessBuilder::create() for more fluidity in the interface until 5.4

This commit is contained in:
Jordi Boggiano 2012-02-16 16:38:35 +01:00
parent 4882777c4e
commit 9e237f6345

View File

@ -35,6 +35,11 @@ class ProcessBuilder
$this->inheritEnv = false;
}
public static function create(array $arguments = array())
{
return new static($arguments);
}
/**
* Adds an unescaped argument to the command string.
*