🤖 Auto commit for release 'develop' on 2026-01-13

This commit is contained in:
JC5
2026-01-13 20:37:46 +01:00
parent 858c44fbce
commit 93507c8b96
17 changed files with 359 additions and 354 deletions

View File

@@ -30,6 +30,7 @@ use FireflyIII\Models\UserGroup;
use FireflyIII\User;
use Illuminate\Contracts\Auth\Authenticatable;
use Illuminate\Support\Collection;
use SensitiveParameter;
/**
* Interface UserRepositoryInterface.
@@ -64,7 +65,7 @@ interface UserRepositoryInterface
/**
* @return mixed
*/
public function changePassword(User $user, #[\SensitiveParameter] string $password);
public function changePassword(User $user, #[SensitiveParameter] string $password);
public function changeStatus(User $user, bool $isBlocked, string $code): bool;