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