Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[5.1] Add update channel reset to Joomla Update Component version 5.1.2 #43695

Prev Previous commit
Next Next commit
Fixes from PHP cs fixer
  • Loading branch information
richard67 committed Jun 22, 2024
commit 84bf58b8f070711f70962461db4c51d208e2d10e
4 changes: 2 additions & 2 deletions administrator/components/com_joomlaupdate/script.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ public function register(Container $container)
$container->set(
InstallerScriptInterface::class,
new class (
$container->get(AdministratorApplication::class),
$container->get(DatabaseInterface::class)
$container->get(AdministratorApplication::class),
$container->get(DatabaseInterface::class)
) implements InstallerScriptInterface {
private AdministratorApplication $app;
private DatabaseInterface $db;
Expand Down