| Total Complexity | 3 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 19 | class PipelineBuilder extends AbstractBuilder |
||
| 20 | { |
||
| 21 | 1 | public function __construct() |
|
| 27 | 1 | } |
|
| 28 | |||
| 29 | /** |
||
| 30 | * Build a new Pipeline object |
||
| 31 | * |
||
| 32 | * @param ProcessorInterface|null $processor |
||
| 33 | * |
||
| 34 | * @return PipelineInterface |
||
| 35 | */ |
||
| 36 | 3 | public function build(ProcessorInterface $processor = null): PipelineInterface |
|
| 48 |