You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
400 B
26 lines
400 B
<?php
|
|
|
|
class Admin
|
|
{
|
|
private string $username;
|
|
private string $password;
|
|
|
|
public function __construct(string $username, string $password)
|
|
{
|
|
$this->username = $username;
|
|
$this->password = $password;
|
|
}
|
|
|
|
public function getUsername()
|
|
{
|
|
return $this->username;
|
|
}
|
|
|
|
public function getPassword()
|
|
{
|
|
return $this->password;
|
|
}
|
|
}
|
|
|
|
?>
|