Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- * Created by PhpStorm.
- * User: Thomas
- * Date: 12/12/2014
- * Time: 11:49
- */
- namespace BD;
- class User {
- private $id;
- private $email;
- private $username;
- private $password;
- private $joinDate;
- public function User($ident, $mail, $user, $passwd, $join){
- $this->id = $ident;
- $this->email = $mail;
- $this->username = $user;
- $this->password = $passwd;
- $this->joinDate = $join;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment