diff --git a/src/Command/CodeCheckerCommand.php b/src/Command/CodeCheckerCommand.php index fe7f8a1..5289842 100644 --- a/src/Command/CodeCheckerCommand.php +++ b/src/Command/CodeCheckerCommand.php @@ -92,10 +92,12 @@ protected function execute(InputInterface $input, OutputInterface $output): int } // Add the files to process. + $output->writeln(sprintf('Number of files requested %d', count($files))); foreach ($files as $file) { $output->writeln(sprintf('Adding file %s', $file)); $cmd[] = $file; } + $output->writeln(sprintf('Number of files loaded %d', count($cmd))); $process = $this->execute->passThroughProcess(new Process($cmd, $this->plugin->directory, null, null, null));