<?php class User { private $username; private $password; public function getUsername() :string { return $this->username; } public function setUsername(string $username) { $this->username = $username; } public function getPassword() : string { return $this->password; } public function setPassword(string $password) { $this->password = $password; } }
You have javascript disabled. You will not be able to edit any code.