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.
|
<?php
|
|
class User{
|
|
private string $login;
|
|
|
|
function __construct($login) {
|
|
$this->login = $login;
|
|
}
|
|
|
|
function get_login() {
|
|
return $this->login;
|
|
}
|
|
|
|
function set_login($login) {
|
|
$this->login = $login;
|
|
}
|
|
}
|
|
?>
|