diff --git a/lib/Command/Log.php b/lib/Command/Log.php index d4d18b4d..95e66355 100644 --- a/lib/Command/Log.php +++ b/lib/Command/Log.php @@ -43,7 +43,7 @@ public function __construct( /** * @return void */ - protected function configure() { + protected function configure(): void { $this ->setName('notify_push:log') ->setDescription('Temporarily set the log level of the push server') @@ -52,7 +52,7 @@ protected function configure() { parent::configure(); } - protected function execute(InputInterface $input, OutputInterface $output) { + protected function execute(InputInterface $input, OutputInterface $output): int { $level = $input->getArgument("level"); if ($input->getOption("restore")) { $output->writeln("restoring log level");