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.
3.01-QCM_MuscuMaths/Website/classes/Administrator.php

41 lines
825 B

<?php
namespace classes;
use \Exception;
class Administrator
{
private int $id;
private string $username;
private string $hashedPassword;
public function __construct(int $id,string $username, string $password)
{
$this->id = $id;
$this->username = $username;
try {
$this->hashedPassword = md5($password);
} catch (Exception $e) {
echo $e->getMessage();
}
}
public function getId(): int
{
return $this->id;
}
public function getUsername()
{
return $this->username;
}
public function getHashedPassword()
{
return $this->hashedPassword;
}
public function setHashedPassword(string $hashedPassword)
{
$this->hashedPassword = $hashedPassword;
}
}