removed userid, added id
This commit is contained in:
parent
72503d7fe2
commit
8189abfd29
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue