Skip to content
Snippets Groups Projects

Automated Project Update Bot fixes

1 file
+ 2
1
Compare changes
  • Side-by-side
  • Inline
@@ -24,6 +24,7 @@ class BrowserController extends ControllerBase {
public function __construct(
private readonly EnabledSourceHandler $enabledSource,
private readonly ?InstallReadiness $installReadiness,
private \Drupal\project_browser\InstallReadiness $installReadiness2,
) {}
/**
@@ -32,7 +33,7 @@ class BrowserController extends ControllerBase {
public static function create(ContainerInterface $container) {
return new static(
$container->get(EnabledSourceHandler::class),
$container->get(InstallReadiness::class, ContainerInterface::NULL_ON_INVALID_REFERENCE),
$this->installReadiness2,
);
}
Loading