58 trigger_error(
'Calling ExtensionCommandController->installCommand() will be removed in TYPO3 v10.0. Use the Symfony command "extension:activate" instead, to be called via the "typo3" CLI entrypoint.', E_USER_DEPRECATED);
62 $service = $this->objectManager->get(\
TYPO3\CMS\Extensionmanager\Utility\InstallUtility::class);
63 $service->install($extensionKey);
78 trigger_error(
'Calling ExtensionCommandController->uninstallCommand() will be removed in TYPO3 v10.0. Use the Symfony command "extension:deactivate" instead, to be called via the "typo3" CLI entrypoint.', E_USER_DEPRECATED);
80 $service = $this->objectManager->get(\
TYPO3\CMS\Extensionmanager\Utility\InstallUtility::class);
81 $service->uninstall($extensionKey);
95 trigger_error(
'Calling ExtensionCommandController->dumpClassLoadingInformationCommand() will be removed in TYPO3 v10.0. Use the Symfony command "dumpautoload" instead, to be called via the "typo3" CLI entrypoint.', E_USER_DEPRECATED);
97 $this->
output->outputLine(
'<error>Class loading information is managed by composer. Use "composer dump-autoload" command to update the information.</error>');
101 $this->
output->outputLine(
'Class Loading information has been updated.');
110 $this->signalSlotDispatcher->dispatch(
'PackageManagement',
'packagesMayHaveChanged');