diff --git a/core/command/app/checkcode.php b/core/command/app/checkcode.php index 8bd079eaad1063eccae4afdff38469ebbadb0c67..5beb13e2c7c44622bf376a79b8fe1f29391c43f9 100644 --- a/core/command/app/checkcode.php +++ b/core/command/app/checkcode.php @@ -87,9 +87,10 @@ class CheckCode extends Command { $output->writeln('<info>App is compliant - awesome job!</info>'); } elseif ($input->getOption('deprecated')) { $output->writeln('<comment>App uses deprecated functionality</comment>'); + return 102; } else { $output->writeln('<error>App is not compliant</error>'); - return 1; + return 101; } } }