| Total Complexity | 4 | 
| Total Lines | 25 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 15 | class ValueReplacingGenerator implements ProxyGeneratorInterface  | 
            ||
| 16 | { | 
            ||
| 17 | /** @var ProxyGeneratorInterface */  | 
            ||
| 18 | private $generator;  | 
            ||
| 19 | |||
| 20 | public function __construct(ProxyGeneratorInterface $generator)  | 
            ||
| 21 |     { | 
            ||
| 22 | $this->generator = $generator;  | 
            ||
| 23 | }  | 
            ||
| 24 | |||
| 25 | public function generate(ReflectionClass $originalClass, ClassGenerator $classGenerator): void  | 
            ||
| 40 | }  | 
            ||
| 41 | }  | 
            ||
| 42 |