Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 2.032 |
Changes | 0 |
1 | <?php |
||
44 | 10 | public function process($payload, ...$params) |
|
45 | { |
||
46 | 10 | if ($this->processor instanceof ParametersInterface) { |
|
47 | 10 | $this->processor->setParameters(...$params); |
|
48 | 10 | return $this->processor->process($payload, ...$this->stages); |
|
49 | } |
||
50 | |||
51 | return $this->processor->process($payload, ...$this->stages); |
||
52 | } |
||
59 |