removed userid, added id

This commit is contained in:
tracer 2022-10-25 13:47:07 +02:00
parent 72503d7fe2
commit 8189abfd29
1 changed files with 6 additions and 6 deletions

View File

@ -12,14 +12,14 @@ namespace App\Entity;
class AddressBookEntry
{
public function __construct(
private int $owner,
private int $owner,
private string $first,
private string $last,
private string $street,
private string $zip,
private string $city,
private string $phone,
private int $userid = 0,
private int $id = 0,
)
{
// empty body
@ -75,14 +75,14 @@ class AddressBookEntry
$this->phone = $phone;
}
public function getUserid(): int
public function getId(): int
{
return $this->userid;
return $this->id;
}
public function setUserid(int $userid): void
public function setId(int $id): void
{
$this->userid = $userid;
$this->id = $id;
}
public function getFirst(): string