Tester\Runner\Job::__construct PHP Method

__construct() public method

public __construct ( $testFile, Tester\Runner\PhpInterpreter $interpreter, array $args = NULL, array $envVars = NULL ) : void
$interpreter Tester\Runner\PhpInterpreter
$args array
$envVars array
return void
    public function __construct($testFile, PhpInterpreter $interpreter, array $args = NULL, array $envVars = NULL)
    {
        $this->file = (string) $testFile;
        $this->interpreter = $interpreter;
        $this->args = (array) $args;
        $this->envVars = (array) $envVars;
    }