| Total Complexity | 4 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | class Processor implements ProcessorInterface |
||
| 13 | { |
||
| 14 | |||
| 15 | private $pointerProcessor; |
||
| 16 | |||
| 17 | public static function create(): ProcessorInterface |
||
| 20 | } |
||
| 21 | |||
| 22 | public function __construct(PointerProcessorInterface $pointerProcessor) |
||
| 23 | { |
||
| 24 | $this->pointerProcessor = $pointerProcessor; |
||
| 25 | } |
||
| 26 | |||
| 27 | public function apply(QueryInterface $query, NodeValueInterface $data): ResultInterface |
||
| 33 | } |
||
| 34 | } |
||
| 36 |