diff --git a/typo3/sysext/backend/Classes/Command/LockBackendCommand.php b/typo3/sysext/backend/Classes/Command/LockBackendCommand.php
index 553b89b96009225876ddf82a7f27dd2ead534b77..a3f7342556dd36b4bdfee4e936c83e80e912b7e4 100644
--- a/typo3/sysext/backend/Classes/Command/LockBackendCommand.php
+++ b/typo3/sysext/backend/Classes/Command/LockBackendCommand.php
@@ -45,6 +45,7 @@ class LockBackendCommand extends Command
      *
      * @param InputInterface $input
      * @param OutputInterface $output
+     * @return int
      */
     protected function execute(InputInterface $input, OutputInterface $output)
     {
@@ -64,6 +65,7 @@ class LockBackendCommand extends Command
         }
         GeneralUtility::writeFile($lockFile, $lockFileContent);
         $io->success($output);
+        return 0;
     }
 
     /**
diff --git a/typo3/sysext/backend/Classes/Command/ReferenceIndexUpdateCommand.php b/typo3/sysext/backend/Classes/Command/ReferenceIndexUpdateCommand.php
index 2127f9d15152174ff2b1ca9e60da340c53dd1ce8..07d75c12af2ad0061e335e063f1db26501bcce60 100644
--- a/typo3/sysext/backend/Classes/Command/ReferenceIndexUpdateCommand.php
+++ b/typo3/sysext/backend/Classes/Command/ReferenceIndexUpdateCommand.php
@@ -48,6 +48,7 @@ class ReferenceIndexUpdateCommand extends Command
      *
      * @param InputInterface $input
      * @param OutputInterface $output
+     * @return int
      */
     protected function execute(InputInterface $input, OutputInterface $output)
     {
@@ -66,5 +67,6 @@ class ReferenceIndexUpdateCommand extends Command
             $io->section('Reference Index is now being updated');
         }
         $referenceIndex->updateIndex($isTestOnly, $progressListener);
+        return 0;
     }
 }
diff --git a/typo3/sysext/backend/Classes/Command/UnlockBackendCommand.php b/typo3/sysext/backend/Classes/Command/UnlockBackendCommand.php
index a7279b7d692883f35c355cc49d509f5f73652015..ef919006f020ce76b7f56e47158d06de2ae5e4e9 100644
--- a/typo3/sysext/backend/Classes/Command/UnlockBackendCommand.php
+++ b/typo3/sysext/backend/Classes/Command/UnlockBackendCommand.php
@@ -37,6 +37,7 @@ class UnlockBackendCommand extends Command
      *
      * @param InputInterface $input
      * @param OutputInterface $output
+     * @return int
      */
     protected function execute(InputInterface $input, OutputInterface $output)
     {
@@ -47,12 +48,13 @@ class UnlockBackendCommand extends Command
             unlink($lockFile);
             if (@is_file($lockFile)) {
                 $io->caution('Could not remove lock file "' . $lockFile . '"!');
-            } else {
-                $io->success('Removed lock file "' . $lockFile . '".');
+                return 1;
             }
+            $io->success('Removed lock file "' . $lockFile . '".');
         } else {
             $io->note('No lock file "' . $lockFile . '" was found.' . LF . 'Hence no lock can be removed.');
         }
+        return 0;
     }
 
     /**
diff --git a/typo3/sysext/core/Classes/Command/DumpAutoloadCommand.php b/typo3/sysext/core/Classes/Command/DumpAutoloadCommand.php
index 6aae05f1e04f249f622347e6cd65c9d6491fd961..b1e90e103a4176f6886ba00b1d8a1ab7391355b6 100644
--- a/typo3/sysext/core/Classes/Command/DumpAutoloadCommand.php
+++ b/typo3/sysext/core/Classes/Command/DumpAutoloadCommand.php
@@ -60,5 +60,6 @@ class DumpAutoloadCommand extends Command
         $io = new SymfonyStyle($input, $output);
         ClassLoadingInformation::dumpClassLoadingInformation();
         $io->success('Class loading information has been updated.');
+        return 0;
     }
 }
diff --git a/typo3/sysext/core/Classes/Command/ExtensionListCommand.php b/typo3/sysext/core/Classes/Command/ExtensionListCommand.php
index 2042aac4b15d4ddf448885b0d47b3ad0ef20d921..45a098138a298e17fe3aee70e0cb5dfc477d3b91 100644
--- a/typo3/sysext/core/Classes/Command/ExtensionListCommand.php
+++ b/typo3/sysext/core/Classes/Command/ExtensionListCommand.php
@@ -114,5 +114,6 @@ class ExtensionListCommand extends Command
             }
         }
         $table->render();
+        return 0;
     }
 }
diff --git a/typo3/sysext/core/Classes/Command/SiteShowCommand.php b/typo3/sysext/core/Classes/Command/SiteShowCommand.php
index 707370ce31b75d3c8cd2fe44ab077415dd4850b0..1929da3634177310c2b665c6dd6fc1c863e01978 100644
--- a/typo3/sysext/core/Classes/Command/SiteShowCommand.php
+++ b/typo3/sysext/core/Classes/Command/SiteShowCommand.php
@@ -54,5 +54,6 @@ class SiteShowCommand extends Command
         $site = $siteFinder->getSiteByIdentifier($input->getArgument('identifier'));
         $io->title('Site configuration for ' . $input->getArgument('identifier'));
         $io->block(Yaml::dump($site->getConfiguration(), 4));
+        return 0;
     }
 }
diff --git a/typo3/sysext/extensionmanager/Classes/Command/ActivateExtensionCommand.php b/typo3/sysext/extensionmanager/Classes/Command/ActivateExtensionCommand.php
index e29a2b0f15a97024f77f0e4890645ef09d87e44f..c15fa73bab7b97afd2dc97cc95fed15f2bb1b32b 100644
--- a/typo3/sysext/extensionmanager/Classes/Command/ActivateExtensionCommand.php
+++ b/typo3/sysext/extensionmanager/Classes/Command/ActivateExtensionCommand.php
@@ -70,5 +70,6 @@ class ActivateExtensionCommand extends Command
         $objectManager->get(InstallUtility::class)->install($extensionKey);
 
         $io->success('Activated extension ' . $extensionKey . ' successfully.');
+        return 0;
     }
 }
diff --git a/typo3/sysext/extensionmanager/Classes/Command/DeactivateExtensionCommand.php b/typo3/sysext/extensionmanager/Classes/Command/DeactivateExtensionCommand.php
index 692fbbc31fb4535aa849cb48bbee152f258da341..f782c2a0b53c2b5dd2bfcffb51a9f40eb964bc27 100644
--- a/typo3/sysext/extensionmanager/Classes/Command/DeactivateExtensionCommand.php
+++ b/typo3/sysext/extensionmanager/Classes/Command/DeactivateExtensionCommand.php
@@ -58,5 +58,6 @@ class DeactivateExtensionCommand extends Command
         $objectManager->get(InstallUtility::class)->uninstall($extensionKey);
 
         $io->success('Deactivated extension "' . $extensionKey . '" successfully.');
+        return 0;
     }
 }
diff --git a/typo3/sysext/impexp/Classes/Command/ImportCommand.php b/typo3/sysext/impexp/Classes/Command/ImportCommand.php
index c79d03a744e950e70a3ed985646450a66f6a2e62..98ac10370eb0bb72b5e66483b12b4530ef37d97f 100644
--- a/typo3/sysext/impexp/Classes/Command/ImportCommand.php
+++ b/typo3/sysext/impexp/Classes/Command/ImportCommand.php
@@ -73,6 +73,7 @@ class ImportCommand extends Command
      *
      * @param InputInterface $input
      * @param OutputInterface $output
+     * @return int
      */
     protected function execute(InputInterface $input, OutputInterface $output)
     {
@@ -117,5 +118,6 @@ class ImportCommand extends Command
         }
 
         $io->success('Imported ' . $input->getArgument('file') . ' to page ' . $pageId . ' successfully');
+        return 0;
     }
 }
diff --git a/typo3/sysext/lowlevel/Classes/Command/CleanFlexFormsCommand.php b/typo3/sysext/lowlevel/Classes/Command/CleanFlexFormsCommand.php
index 14114b5ef4fc9f36d71a978e279be94d9143615e..113577be4c6ccfa021ecfbc95de3324851720140 100644
--- a/typo3/sysext/lowlevel/Classes/Command/CleanFlexFormsCommand.php
+++ b/typo3/sysext/lowlevel/Classes/Command/CleanFlexFormsCommand.php
@@ -67,6 +67,7 @@ class CleanFlexFormsCommand extends Command
      *
      * @param InputInterface $input
      * @param OutputInterface $output
+     * @return int
      */
     protected function execute(InputInterface $input, OutputInterface $output)
     {
@@ -110,6 +111,7 @@ class CleanFlexFormsCommand extends Command
         } else {
             $io->success('Nothing to do - You\'re all set!');
         }
+        return 0;
     }
 
     /**
diff --git a/typo3/sysext/lowlevel/Classes/Command/DeletedRecordsCommand.php b/typo3/sysext/lowlevel/Classes/Command/DeletedRecordsCommand.php
index ce2fc3d2766abe1dd326134933d6968e72fe914b..7db1265c32cca677a7dc7415c0d762097d202588 100644
--- a/typo3/sysext/lowlevel/Classes/Command/DeletedRecordsCommand.php
+++ b/typo3/sysext/lowlevel/Classes/Command/DeletedRecordsCommand.php
@@ -67,6 +67,7 @@ class DeletedRecordsCommand extends Command
      *
      * @param InputInterface $input
      * @param OutputInterface $output
+     * @return int
      */
     protected function execute(InputInterface $input, OutputInterface $output)
     {
@@ -115,6 +116,7 @@ class DeletedRecordsCommand extends Command
         $this->deleteRecords($deletedRecords, $dryRun, $io);
 
         $io->success('All done!');
+        return 0;
     }
 
     /**
diff --git a/typo3/sysext/lowlevel/Classes/Command/FilesWithMultipleReferencesCommand.php b/typo3/sysext/lowlevel/Classes/Command/FilesWithMultipleReferencesCommand.php
index 22e76bb0868ee0061c906727c6ed8c742eb95c8f..35ba5842105e190783a86b2196d8ec03330808fc 100644
--- a/typo3/sysext/lowlevel/Classes/Command/FilesWithMultipleReferencesCommand.php
+++ b/typo3/sysext/lowlevel/Classes/Command/FilesWithMultipleReferencesCommand.php
@@ -79,6 +79,7 @@ If you want to get more detailed information, use the --verbose option.')
      *
      * @param InputInterface $input
      * @param OutputInterface $output
+     * @return int
      */
     protected function execute(InputInterface $input, OutputInterface $output)
     {
@@ -108,6 +109,7 @@ If you want to get more detailed information, use the --verbose option.')
         } else {
             $io->success('Nothing to do, no files found which are referenced more than once.');
         }
+        return 0;
     }
 
     /**
diff --git a/typo3/sysext/lowlevel/Classes/Command/ListSysLogCommand.php b/typo3/sysext/lowlevel/Classes/Command/ListSysLogCommand.php
index e085a5f60678cb0b59a3121b1e4bd733d343a206..8796b223e390ef556d8b4e26264130096ec74489 100644
--- a/typo3/sysext/lowlevel/Classes/Command/ListSysLogCommand.php
+++ b/typo3/sysext/lowlevel/Classes/Command/ListSysLogCommand.php
@@ -43,6 +43,7 @@ class ListSysLogCommand extends Command
      *
      * @param InputInterface $input
      * @param OutputInterface $output
+     * @return int
      */
     protected function execute(InputInterface $input, OutputInterface $output)
     {
@@ -112,6 +113,7 @@ class ListSysLogCommand extends Command
             $content[] = $result;
         }
         $io->table($tableHeaders, $content);
+        return 0;
     }
 
     /**
diff --git a/typo3/sysext/lowlevel/Classes/Command/LostFilesCommand.php b/typo3/sysext/lowlevel/Classes/Command/LostFilesCommand.php
index 33c234fc8c504cbfb4723c3c2eabcd5f6d12d407..02996c829b2e5b192f1eb831c5dfc54ff4fa22a7 100644
--- a/typo3/sysext/lowlevel/Classes/Command/LostFilesCommand.php
+++ b/typo3/sysext/lowlevel/Classes/Command/LostFilesCommand.php
@@ -91,6 +91,7 @@ If you want to get more detailed information, use the --verbose option.')
      *
      * @param InputInterface $input
      * @param OutputInterface $output
+     * @return int
      */
     protected function execute(InputInterface $input, OutputInterface $output)
     {
@@ -134,6 +135,7 @@ If you want to get more detailed information, use the --verbose option.')
         } else {
             $io->success('Nothing to do, no lost files found');
         }
+        return 0;
     }
 
     /**
diff --git a/typo3/sysext/lowlevel/Classes/Command/MissingFilesCommand.php b/typo3/sysext/lowlevel/Classes/Command/MissingFilesCommand.php
index 79ab4297af6139131c109bcc2ca6e24558534dfe..e0767f4e1e3b56a8f34e5eebb16abe850eee46b7 100644
--- a/typo3/sysext/lowlevel/Classes/Command/MissingFilesCommand.php
+++ b/typo3/sysext/lowlevel/Classes/Command/MissingFilesCommand.php
@@ -80,6 +80,7 @@ If you want to get more detailed information, use the --verbose option.')
      *
      * @param InputInterface $input
      * @param OutputInterface $output
+     * @return int
      */
     protected function execute(InputInterface $input, OutputInterface $output)
     {
@@ -113,6 +114,7 @@ If you want to get more detailed information, use the --verbose option.')
         if (!count($missingSoftReferencedFiles) && !count($missingReferencedFiles)) {
             $io->success('Nothing to do, no missing files found. Everything is in place.');
         }
+        return 0;
     }
 
     /**
diff --git a/typo3/sysext/lowlevel/Classes/Command/MissingRelationsCommand.php b/typo3/sysext/lowlevel/Classes/Command/MissingRelationsCommand.php
index b257c086178207c284e737b3e8f14784f6545f8a..926e574ee2d0bf196be5f37391d2ff93d04d5103 100644
--- a/typo3/sysext/lowlevel/Classes/Command/MissingRelationsCommand.php
+++ b/typo3/sysext/lowlevel/Classes/Command/MissingRelationsCommand.php
@@ -95,6 +95,7 @@ If you want to get more detailed information, use the --verbose option.')
      *
      * @param InputInterface $input
      * @param OutputInterface $output
+     * @return int
      */
     protected function execute(InputInterface $input, OutputInterface $output)
     {
@@ -173,6 +174,7 @@ If you want to get more detailed information, use the --verbose option.')
         } else {
             $io->success('Nothing to do, no missing relations found. Everything is in place.');
         }
+        return 0;
     }
 
     /**
diff --git a/typo3/sysext/lowlevel/Classes/Command/OrphanRecordsCommand.php b/typo3/sysext/lowlevel/Classes/Command/OrphanRecordsCommand.php
index 11d7b078c4171da3eb30de262d3ac4e428f4d21d..c1ebdcc2cdd9f43ed5b6e1bf2144e853827c327a 100644
--- a/typo3/sysext/lowlevel/Classes/Command/OrphanRecordsCommand.php
+++ b/typo3/sysext/lowlevel/Classes/Command/OrphanRecordsCommand.php
@@ -65,6 +65,7 @@ Manual repair suggestions:
      *
      * @param InputInterface $input
      * @param OutputInterface $output
+     * @return int
      */
     protected function execute(InputInterface $input, OutputInterface $output)
     {
@@ -136,6 +137,7 @@ Manual repair suggestions:
         } else {
             $io->success('No orphan records found.');
         }
+        return 0;
     }
 
     /**
diff --git a/typo3/sysext/redirects/Classes/Command/CheckIntegrityCommand.php b/typo3/sysext/redirects/Classes/Command/CheckIntegrityCommand.php
index cd003cdf1a5a106b2dcbfcf2da025776dafebd8d..e93ed70b6ae4a78ecec11d06b35bdba14060fba3 100644
--- a/typo3/sysext/redirects/Classes/Command/CheckIntegrityCommand.php
+++ b/typo3/sysext/redirects/Classes/Command/CheckIntegrityCommand.php
@@ -44,8 +44,9 @@ class CheckIntegrityCommand extends Command
      *
      * @param InputInterface $input
      * @param OutputInterface $output
+     * @return int
      */
-    protected function execute(InputInterface $input, OutputInterface $output): void
+    protected function execute(InputInterface $input, OutputInterface $output)
     {
         $registry = GeneralUtility::makeInstance(Registry::class);
         $registry->remove(static::REGISTRY_NAMESPACE, static::REGISTRY_KEY);
@@ -62,5 +63,6 @@ class CheckIntegrityCommand extends Command
             ));
         }
         $registry->set(static::REGISTRY_NAMESPACE, static::REGISTRY_KEY, $list);
+        return 0;
     }
 }
diff --git a/typo3/sysext/workspaces/Classes/Command/AutoPublishCommand.php b/typo3/sysext/workspaces/Classes/Command/AutoPublishCommand.php
index a85c775d26eefce70111d541a1556958dbd9d6a1..a1f77647c7d87e64356e0023ef7746f41ebf54d2 100644
--- a/typo3/sysext/workspaces/Classes/Command/AutoPublishCommand.php
+++ b/typo3/sysext/workspaces/Classes/Command/AutoPublishCommand.php
@@ -47,6 +47,7 @@ class AutoPublishCommand extends Command
      *
      * @param InputInterface $input
      * @param OutputInterface $output
+     * @return int
      */
     protected function execute(InputInterface $input, OutputInterface $output)
     {
@@ -88,6 +89,7 @@ class AutoPublishCommand extends Command
         } else {
             $io->note('Nothing to do.');
         }
+        return 0;
     }
 
     /**
diff --git a/typo3/sysext/workspaces/Classes/Command/CleanupPreviewLinksCommand.php b/typo3/sysext/workspaces/Classes/Command/CleanupPreviewLinksCommand.php
index 42043076436f5cbd5cba61cb48886a58feac7651..5e892b0f2bf5d5c3de9052559596233a7a38246e 100644
--- a/typo3/sysext/workspaces/Classes/Command/CleanupPreviewLinksCommand.php
+++ b/typo3/sysext/workspaces/Classes/Command/CleanupPreviewLinksCommand.php
@@ -43,6 +43,7 @@ class CleanupPreviewLinksCommand extends Command
      *
      * @param InputInterface $input
      * @param OutputInterface $output
+     * @return int
      */
     protected function execute(InputInterface $input, OutputInterface $output)
     {
@@ -64,5 +65,6 @@ class CleanupPreviewLinksCommand extends Command
         } else {
             $io->note('No expired preview links found. All done.');
         }
+        return 0;
     }
 }
diff --git a/typo3/sysext/workspaces/Classes/Command/WorkspaceVersionRecordsCommand.php b/typo3/sysext/workspaces/Classes/Command/WorkspaceVersionRecordsCommand.php
index cb9119f724bbc7b9771884cda98d36250f6ed5ed..6a7157f3fadcdf5f374f50114a3c6f78aae98648 100644
--- a/typo3/sysext/workspaces/Classes/Command/WorkspaceVersionRecordsCommand.php
+++ b/typo3/sysext/workspaces/Classes/Command/WorkspaceVersionRecordsCommand.php
@@ -100,6 +100,7 @@ class WorkspaceVersionRecordsCommand extends Command
      *
      * @param InputInterface $input
      * @param OutputInterface $output
+     * @return int
      */
     protected function execute(InputInterface $input, OutputInterface $output)
     {
@@ -255,6 +256,7 @@ class WorkspaceVersionRecordsCommand extends Command
                 break;
         }
         $io->success('All done!');
+        return 0;
     }
 
     /**