| Total Complexity | 4 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 19 | class AbstractChainOperation implements ChainOperationInterface |
||
| 20 | 13 | { |
|
| 21 | /** |
||
| 22 | 13 | * @inheritdoc |
|
| 23 | 13 | */ |
|
| 24 | public function process(ItemInterface $item, ExecutionContext $context): ItemInterface |
||
| 33 | } |
||
| 34 | |||
| 35 | protected function processData(DataItemInterface $item, ExecutionContext $context): ItemInterface |
||
| 38 | } |
||
| 39 | |||
| 40 | protected function processStop(StopItem $item, ExecutionContext $context): ItemInterface |
||
| 45 |