Skip to content

Commit

Permalink
Removing readonly from entity
Browse files Browse the repository at this point in the history
  • Loading branch information
JimTools committed Feb 29, 2024
1 parent b6f8cd6 commit 31b291b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Domain/User/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class User implements JsonSerializable
private string $lastName;

public function __construct(
private readonly int|null $id,
private int|null $id,
string $username,
string $firstName,
string $lastName
Expand Down

0 comments on commit 31b291b

Please sign in to comment.