18 lines
334 B
PHP
18 lines
334 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Netig\Netslim\Identity\Application\Command;
|
|
|
|
/**
|
|
* DTO d'entrée du use case ChangePassword.
|
|
*/
|
|
final readonly class ChangePasswordCommand
|
|
{
|
|
public function __construct(
|
|
public int $userId,
|
|
public string $currentPassword,
|
|
public string $newPassword,
|
|
) {}
|
|
}
|