More PHP8.4 updates

This commit is contained in:
James Cole
2025-05-04 13:47:00 +02:00
parent e42107c03c
commit 51e86448c7
195 changed files with 524 additions and 715 deletions

View File

@@ -89,7 +89,7 @@ class LoginController extends Controller
try {
$this->validateLogin($request);
} catch (ValidationException $e) {
} catch (ValidationException) {
// basic validation exception.
// report the failed login to the user if the count is 2 or 5.
// TODO here be warning.
@@ -220,7 +220,7 @@ class LoginController extends Controller
*
* @throws FireflyException
*/
public function showLoginForm(Request $request)
public function showLoginForm(?Request $request = null)
{
Log::channel('audit')->info('Show login form (1.1).');