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