ParaTest\Runners\PHPUnit\WrapperRunner::streamsOf PHP Method

streamsOf() private method

Returns the output streams of a subset of workers.
private streamsOf ( $workers ) : array
return array
    private function streamsOf($workers)
    {
        $streams = array();
        foreach (array_keys($workers) as $index) {
            $streams[$index] = $this->streams[$index];
        }
        return $streams;
    }