| Total Complexity | 3 | 
| Total Lines | 29 | 
| Duplicated Lines | 0 % | 
| Coverage | 0% | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 10 | class ConfigViewCommand extends Command | ||
| 11 | { | ||
| 12 | private $config; | ||
| 13 | |||
| 14 | /** | ||
| 15 | * @codeCoverageIgnore | ||
| 16 | */ | ||
| 17 | public function __construct() | ||
| 18 |     { | ||
| 19 | parent::__construct(); | ||
| 20 | $this->config = new Config(); | ||
| 21 | } | ||
| 22 | |||
| 23 | /** | ||
| 24 | * @codeCoverageIgnore | ||
| 25 | */ | ||
| 26 | protected function configure() | ||
| 27 |     { | ||
| 28 | $this | ||
| 29 |             ->setName('config:path') | ||
| 30 |             ->setDescription('View configuration path'); | ||
| 31 | } | ||
| 32 | |||
| 33 | protected function execute(InputInterface $input, OutputInterface $output): int | ||
| 39 | } | ||
| 40 | } | ||
| 41 |