| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 32 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 33 | { |
||
| 34 | $proxyPath = $input->getArgument('cache-path'); |
||
| 35 | $className = $input->getArgument('class'); |
||
| 36 | |||
| 37 | $hydratorFactory = new HydratorFactory($proxyPath); |
||
| 38 | |||
| 39 | $output->write('Generating "<info>' . $className . '</info>" '); |
||
| 40 | $hydratorFactory->getHydratorClassName($className); |
||
| 41 | $output->writeLn('<comment>Done</comment>'); |
||
| 42 | } |
||
| 43 | } |
||
| 44 |