diff options
Diffstat (limited to 'core/Command/Log/File.php')
-rw-r--r-- | core/Command/Log/File.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/Command/Log/File.php b/core/Command/Log/File.php index 0f7fa9c1a47..5ab3cc16e46 100644 --- a/core/Command/Log/File.php +++ b/core/Command/Log/File.php @@ -72,7 +72,7 @@ class File extends Command implements Completion\CompletionAwareInterface { ; } - protected function execute(InputInterface $input, OutputInterface $output) { + protected function execute(InputInterface $input, OutputInterface $output): int { $toBeSet = []; if ($input->getOption('enable')) { @@ -115,6 +115,7 @@ class File extends Command implements Completion\CompletionAwareInterface { $rotateString = 'disabled'; } $output->writeln('Rotate at: '.$rotateString); + return 0; } /** |