| Total Complexity | 2 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | final class Mutator implements MutatorInterface |
||
| 14 | { |
||
| 15 | |||
| 16 | private $valueWalker; |
||
| 17 | |||
| 18 | private $eventDecoder; |
||
| 19 | |||
| 20 | 5 | public function __construct(ValueWalkerInterface $valueWalker, EventDecoderInterface $eventDecoder) |
|
| 24 | 5 | } |
|
| 25 | |||
| 26 | 5 | public function mutate(NodeValueInterface $rootNode, MutationInterface $mutation): ?NodeValueInterface |
|
| 37 |