Guest User

Untitled

a guest
Sep 30th, 2018
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. class User
  2. {
  3. use JSONized;
  4.  
  5. public $username;
  6. public $password;
  7. public $email;
  8.  
  9. public function __construct($username, $password, $email)
  10. {
  11. $this->username = $username;
  12. $this->password = md5($password);
  13. $this->email = $email;
  14. }
  15. }
Add Comment
Please, Sign In to add comment