removed userid, added id
This commit is contained in:
		@@ -19,7 +19,7 @@ class AddressBookEntry
 | 
			
		||||
        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
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user