From cca2f7059bc572497a8ed80f2d35e12a94984683 Mon Sep 17 00:00:00 2001 From: Thomas Portelange Date: Tue, 2 Apr 2024 02:33:09 +0200 Subject: [PATCH] ENH Update PHPDocs for methods with missing nullable return types (#11187) --- src/Core/Manifest/ModuleResourceLoader.php | 8 ++++---- src/Security/Member.php | 7 +++---- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/src/Core/Manifest/ModuleResourceLoader.php b/src/Core/Manifest/ModuleResourceLoader.php index 96cf80e2c61..6ae4ef3db2b 100644 --- a/src/Core/Manifest/ModuleResourceLoader.php +++ b/src/Core/Manifest/ModuleResourceLoader.php @@ -19,7 +19,7 @@ class ModuleResourceLoader implements TemplateGlobalProvider * For other files, return original value * * @param string $resource - * @return string + * @return string|null */ public function resolvePath($resource) { @@ -38,7 +38,7 @@ public function resolvePath($resource) * Resolves resource specifier to the given url. * * @param string $resource - * @return string + * @return string|null */ public function resolveURL($resource) { @@ -60,7 +60,7 @@ public function resolveURL($resource) * Template wrapper for resolvePath * * @param string $resource - * @return string + * @return string|null */ public static function resourcePath($resource) { @@ -71,7 +71,7 @@ public static function resourcePath($resource) * Template wrapper for resolveURL * * @param string $resource - * @return string + * @return string|null */ public static function resourceURL($resource) { diff --git a/src/Security/Member.php b/src/Security/Member.php index a511a9e3ea9..4b60be11706 100644 --- a/src/Security/Member.php +++ b/src/Security/Member.php @@ -390,7 +390,7 @@ public static function set_password_validator(PasswordValidator $validator = nul /** * Returns the default {@link PasswordValidator} * - * @return PasswordValidator + * @return PasswordValidator|null */ public static function password_validator() { @@ -575,8 +575,7 @@ public function validateAutoLoginToken($autologinToken) * @param string $hash The hash key * @param bool $login Should the member be logged in? * - * @return Member the matching member, if valid - * @return Member + * @return Member|null the matching member, if valid or null */ public static function member_from_autologinhash($hash, $login = false) { @@ -597,7 +596,7 @@ public static function member_from_autologinhash($hash, $login = false) * Find a member record with the given TempIDHash value * * @param string $tempid - * @return Member + * @return Member|null the matching member, if valid or null */ public static function member_from_tempid($tempid) {