Liuggio\Fastest\Process\EnvCommandCreator::execute PHP Method

execute() public method

create an array of env
public execute ( $i, $maxProcesses, $suite, $currentProcessCounter, $isFirstOnItsThread = false )
    public function execute($i, $maxProcesses, $suite, $currentProcessCounter, $isFirstOnItsThread = false)
    {
        return $_ENV + array(self::ENV_TEST_CHANNEL . '=' . (int) $i, self::ENV_TEST_CHANNEL_READABLE . '=test_' . (int) $i, self::ENV_TEST_CHANNELS_NUMBER . '=' . (int) $maxProcesses, self::ENV_TEST_ARGUMENT . '=' . $suite, self::ENV_TEST_INCREMENTAL_NUMBER . '=' . (int) $currentProcessCounter, self::ENV_TEST_IS_FIRST_ON_CHANNEL . '=' . (int) $isFirstOnItsThread, 'PATH=' . getenv('PATH'));
    }
EnvCommandCreator