Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| UpdateUserCommand | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
| __construct | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace App\Identity\Application\Command; |
| 6 | |
| 7 | final readonly class UpdateUserCommand |
| 8 | { |
| 9 | public function __construct( |
| 10 | public string $userId, |
| 11 | public string $email, |
| 12 | public string $preferredCurrency, |
| 13 | public string $name, |
| 14 | public string $surnames, |
| 15 | public ?string $birthDate, |
| 16 | ) { |
| 17 | } |
| 18 | } |