Skip to content

Commit

Permalink
PHP 8.3 updates and space fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
oharacj committed Dec 11, 2024
1 parent a85a525 commit fd7d5a7
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions module/VuFind/src/VuFind/Auth/Manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -200,8 +200,8 @@ public function supportsCreation($authMethod = null)
*/
public function supportsRecovery($authMethod = null)
{
return ($this->config->Authentication->recover_password ?? false)
&& $this->getAuth($authMethod)->supportsPasswordRecovery();
return ($this->config->Authentication->recover_password ?? false)
&& $this->getAuth($authMethod)->supportsPasswordRecovery();
}

/**
Expand Down
1 change: 0 additions & 1 deletion module/VuFind/src/VuFind/Auth/MultiILS.php
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,6 @@ public function setCatalog(\VuFind\ILS\Connection $connection)
parent::setCatalog($connection);
}


/**
* Test to see if the target ILS supports password Recovery
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1794,7 +1794,7 @@ protected function sendRecoveryEmail(UserEntityInterface $user, $config)
'url' => $this->getServerUrl('myresearch-verify')
. '?hash='
. $user->getVerifyHash() . '&auth_method=' . $method
. $target
. $target,
]
);
$this->getService(Mailer::class)->send(
Expand Down
1 change: 0 additions & 1 deletion module/VuFind/src/VuFind/ILS/Driver/MultiBackend.php
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,6 @@ public function getLoginDrivers()
return $this->config['Login']['drivers'] ?? [];
}


/**
* Retrieve the name of the ILS when provided the alias
*
Expand Down

0 comments on commit fd7d5a7

Please sign in to comment.