Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion drupal_seamless_cilogon.info.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ name: Drupal Seamless Cilogon
description: Drupal Seamless Cilogon Module
package: Custom
type: module
core_version_requirement: ^9 || ^10
core_version_requirement: ^10 || ^11
2 changes: 1 addition & 1 deletion src/Controller/NcController.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public function __construct(KillSwitch $kill_switch) {
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
return new static(
return new self(
$container->get('page_cache_kill_switch')
);
}
Expand Down
2 changes: 1 addition & 1 deletion src/Form/DrupalSeamlessCilogon.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public function getFormId()
*/
public function submitForm(array &$form, FormStateInterface $form_state)
{
parent::submitForm($form, $form_state);

}

/**
Expand Down