removed userid, added id
This commit is contained in:
parent
72503d7fe2
commit
8189abfd29
|
@ -19,7 +19,7 @@ class AddressBookEntry
|
||||||
private string $zip,
|
private string $zip,
|
||||||
private string $city,
|
private string $city,
|
||||||
private string $phone,
|
private string $phone,
|
||||||
private int $userid = 0,
|
private int $id = 0,
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
// empty body
|
// empty body
|
||||||
|
@ -75,14 +75,14 @@ class AddressBookEntry
|
||||||
$this->phone = $phone;
|
$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
|
public function getFirst(): string
|
||||||
|
|
Loading…
Reference in New Issue