Skip to content

Commit

Permalink
Merge branch '5.2' into 5
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Apr 3, 2024
2 parents b442d9d + 97a8da8 commit 39c9e0d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
8 changes: 4 additions & 4 deletions src/Core/Manifest/ModuleResourceLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand All @@ -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)
{
Expand All @@ -59,7 +59,7 @@ public function resolveURL($resource)
* Template wrapper for resolvePath
*
* @param string $resource
* @return string
* @return string|null
*/
public static function resourcePath($resource)
{
Expand All @@ -70,7 +70,7 @@ public static function resourcePath($resource)
* Template wrapper for resolveURL
*
* @param string $resource
* @return string
* @return string|null
*/
public static function resourceURL($resource)
{
Expand Down
7 changes: 3 additions & 4 deletions src/Security/Member.php
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,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()
{
Expand Down Expand Up @@ -576,8 +576,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)
{
Expand All @@ -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)
{
Expand Down

0 comments on commit 39c9e0d

Please sign in to comment.