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.
16 lines
355 B
16 lines
355 B
<?php
|
|
class User{
|
|
public string $username;
|
|
public string $passwd;
|
|
public string $img;
|
|
public string $email;
|
|
|
|
function __construct(string $pseudo, string $password, string $image, string $mail) {
|
|
$this->username = $pseudo;
|
|
$this->passwd = $password;
|
|
$this->img = $image;
|
|
$this->email = $mail;
|
|
}
|
|
}
|
|
|
|
?>
|