| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 39 | 25 | public function start(int $pipelineNumber) |
|
| 40 | { |
||
| 41 | 25 | $this->reset(); |
|
| 42 | 25 | $env = $this->process->getEnv(); |
|
| 43 | 25 | $env[EnvVariables::PROCESS_UNIQUE_ID] = $this->getUniqueId(); |
|
| 44 | 25 | $env[EnvVariables::PIPELINE_NUMBER] = $pipelineNumber; |
|
| 45 | |||
| 46 | 25 | $this->process->setEnv($env); |
|
| 47 | 25 | $this->process->start(); |
|
| 48 | } |
||
| 49 | |||
| 76 |