Add void after some methods.

This commit is contained in:
James Cole
2023-12-21 04:59:23 +01:00
parent bc50d25468
commit 655d03bec4
14 changed files with 19 additions and 16 deletions

View File

@@ -527,7 +527,7 @@ class User extends Authenticatable
*
* @deprecated
*/
public function setLdapDomain($domain)
public function setLdapDomain($domain): void
{
$this->{$this->getLdapDomainColumn()} = $domain;
}
@@ -539,7 +539,7 @@ class User extends Authenticatable
*
* @deprecated
*/
public function setLdapGuid($guid)
public function setLdapGuid($guid): void
{
$this->{$this->getLdapGuidColumn()} = $guid;
}