diff options
Diffstat (limited to 'core/Command')
-rw-r--r-- | core/Command/App/CheckCode.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Command/App/CheckCode.php b/core/Command/App/CheckCode.php index 48662409dcf..a7ef9024326 100644 --- a/core/Command/App/CheckCode.php +++ b/core/Command/App/CheckCode.php @@ -97,7 +97,7 @@ class CheckCode extends Command implements CompletionAwareInterface { $checkList = new $checkerClass($checkList); } - $codeChecker = new CodeChecker($checkList); + $codeChecker = new CodeChecker($checkList, !$input->getOption('skip-validate-info')); $codeChecker->listen('CodeChecker', 'analyseFileBegin', function($params) use ($output) { if(OutputInterface::VERBOSITY_VERBOSE <= $output->getVerbosity()) { |