You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
345 B
16 lines
345 B
<?php
|
|
|
|
namespace App\Domains\Identity\Actions\Passwords;
|
|
|
|
use App\Domains\Identity\DTOs\Passwords\UpdatePasswordDTO;
|
|
use App\Domains\Identity\Models\User;
|
|
|
|
class UpdatePassword
|
|
{
|
|
public function execute(User $user, UpdatePasswordDTO $dto): void
|
|
{
|
|
$user->update([
|
|
'password' => $dto->new_password,
|
|
]);
|
|
}
|
|
}
|
|
|